mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 03:59:22 +00:00
Fixed issue with BlockFromTo and plot clusters in augmented worlds
This commit is contained in:
parent
0c81dd82b3
commit
488dbb0a63
1 changed files with 1 additions and 1 deletions
|
@ -869,7 +869,7 @@ public class PlayerEvents extends com.intellectualcrafters.plot.listeners.PlotLi
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Plot plot = MainUtil.getPlot(loc);
|
Plot plot = MainUtil.getPlot(loc);
|
||||||
if (FlagManager.isPlotFlagTrue(plot, "disable-physics")) {
|
if (plot != null && FlagManager.isPlotFlagTrue(plot, "disable-physics")) {
|
||||||
e.setCancelled(true);
|
e.setCancelled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue