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 27c1a5d20..9bd70f607 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.getVelocity().toLocation(event.getBlock().getWorld())); + Location location = BukkitUtil.getLocation(event.getBlock().getLocation()); if (location.isPlotRoad()) { event.setCancelled(true); }