Major command changes that don't work yet.

This commit is contained in:
MattBDev
2019-07-05 20:46:48 -04:00
parent ffc2092d93
commit 8108d0a936
399 changed files with 13558 additions and 7985 deletions

View File

@@ -318,7 +318,7 @@ public interface Extent extends InputExtent, OutputExtent {
default boolean contains(BlockVector3 pt) {
BlockVector3 min = getMinimumPoint();
BlockVector3 max = getMaximumPoint();
return (pt.containedWithin(min, max));
return pt.containedWithin(min, max);
}
default void addOre(Region region, Mask mask, Pattern material, int size, int frequency, int rarity, int minY, int maxY) throws WorldEditException {
@@ -350,7 +350,7 @@ public interface Extent extends InputExtent, OutputExtent {
int[] counter = new int[BlockTypes.size()];
for (final BlockVector3 pt : region) {
BlockType type = getBlockType(pt);
BlockType type = getBlock(pt).getBlockType();
counter[type.getInternalId()]++;
}
List<Countable<BlockType>> distribution = new ArrayList<>();