Possible fix for redstone in merged plots

This commit is contained in:
Jesse Boyd 2016-09-20 23:49:22 +10:00
parent 364b4347d1
commit 9e5af7a642
2 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ public class PlayerEvents extends PlotListener implements Listener {
if (area == null) { if (area == null) {
return; return;
} }
Plot plot = area.getOwnedPlotAbs(loc); Plot plot = area.getOwnedPlot(loc);
if (plot == null) { if (plot == null) {
return; return;
} }

View File

@ -100,7 +100,7 @@ public class PlayerEvents extends PlotListener implements Listener {
if (area == null) { if (area == null) {
return; return;
} }
Plot plot = area.getOwnedPlotAbs(loc); Plot plot = area.getOwnedPlot(loc);
if (plot == null) { if (plot == null) {
return; return;
} }