Update from sk89q/master

This commit is contained in:
Jesse Boyd
2018-09-25 15:35:21 +10:00
14 changed files with 47 additions and 29 deletions

View File

@ -63,7 +63,7 @@ public class BlockMask extends AbstractExtentMask {
if (set == ALL) {
strings.add(type.getId());
} else {
for (BlockState state : type.getStates()) {
for (BlockState state : type.getAllStates()) {
if (test(state)) {
strings.add(state.getAsString());
}