Fix binding order

This commit is contained in:
Jesse Boyd
2019-04-01 23:55:15 +11:00
parent 64a134a9ee
commit c820406e8c
2 changed files with 8 additions and 3 deletions

View File

@ -357,7 +357,7 @@ public class ForwardExtentCopy implements Operation {
.stream()
.filter(entity -> entity.getState() != null &&
!entity.getState().getType().getId().equals("minecraft:player") &&
region.contains(entity.getLocation().toVector()))
region.contains(entity.getLocation().toBlockPoint()))
.collect(Collectors.toList());
} else {
entities = new ArrayList<>();