mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-19 23:41:26 +02:00
Possible fix for redstone in merged plots
This commit is contained in:
parent
364b4347d1
commit
9e5af7a642
Bukkit/src/main/java/com/plotsquared/bukkit/listeners
Nukkit/src/main/java/com/plotsquared/nukkit/listeners
@ -195,7 +195,7 @@ public class PlayerEvents extends PlotListener implements Listener {
|
||||
if (area == null) {
|
||||
return;
|
||||
}
|
||||
Plot plot = area.getOwnedPlotAbs(loc);
|
||||
Plot plot = area.getOwnedPlot(loc);
|
||||
if (plot == null) {
|
||||
return;
|
||||
}
|
||||
|
@ -100,7 +100,7 @@ public class PlayerEvents extends PlotListener implements Listener {
|
||||
if (area == null) {
|
||||
return;
|
||||
}
|
||||
Plot plot = area.getOwnedPlotAbs(loc);
|
||||
Plot plot = area.getOwnedPlot(loc);
|
||||
if (plot == null) {
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user