mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-12 10:18:36 +00:00
filter sphere
This commit is contained in:
@ -7,6 +7,11 @@ public class CharBlocks implements IBlocks {
|
||||
public final char[][] blocks;
|
||||
public final Section[] sections;
|
||||
|
||||
public CharBlocks(CharBlocks other) {
|
||||
this.blocks = other.blocks;
|
||||
this.sections = other.sections;
|
||||
}
|
||||
|
||||
public CharBlocks() {
|
||||
blocks = new char[16][];
|
||||
sections = new Section[16];
|
||||
|
Reference in New Issue
Block a user