mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-03 11:05:41 +00:00
Possible fix for redstone in merged plots
This commit is contained in:
parent
364b4347d1
commit
9e5af7a642
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue