diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listeners/PlayerEvents.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listeners/PlayerEvents.java index bd589a0c6..d4897be3b 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listeners/PlayerEvents.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listeners/PlayerEvents.java @@ -1269,7 +1269,7 @@ public class PlayerEvents extends PlotListener implements Listener { if (event.getBlock().getType() == Material.DROPPER) return; } } - Location location = BukkitUtil.getLocation(event.getBlock().getLocation()); + Location location = BukkitUtil.getLocation(event.getVelocity().toLocation(event.getBlock().getWorld())); if (location.isPlotRoad()) { event.setCancelled(true); }