From 420e38beadf9bd22826d4312ecd40fb42354538e Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Thu, 23 Jul 2020 18:07:23 +0100 Subject: [PATCH] idek? --- .../java/com/plotsquared/core/queue/BasicQueueCoordinator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java index cfb36ca65..bbaffc6df 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java @@ -136,7 +136,7 @@ public abstract class BasicQueueCoordinator extends QueueCoordinator { if (entity.getState() == null || entity.getState().getType() == EntityTypes.PLAYER) { return false; } - Location location = entity.getBlockLocation(); + Location location = entity.getLocation(); LocalChunk chunk = getChunk(location.getBlockX() >> 4, location.getBlockZ() >> 4); chunk.setEntity(location, entity.getState()); return true;