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;