mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 03:59:22 +00:00
should fix #106 (testing needed)
This commit is contained in:
parent
aabbd851ec
commit
ee804a8148
1 changed files with 12 additions and 8 deletions
|
@ -170,16 +170,20 @@ public class PlayerEvents extends com.intellectualcrafters.plot.listeners.PlotLi
|
|||
return;
|
||||
}
|
||||
}
|
||||
if (enteredPlot(f, q)) {
|
||||
final Plot plot = getCurrentPlot(q);
|
||||
final boolean admin = PlotMain.hasPermission(player, "plots.admin.entry.denied");
|
||||
if (plot.deny_entry(player) && !admin) {
|
||||
event.setCancelled(true);
|
||||
Plot plot = getCurrentPlot(q);
|
||||
if (plot != null) {
|
||||
if (!plot.equals(getCurrentPlot(f))) {
|
||||
event.setCancelled(true);
|
||||
return;
|
||||
}
|
||||
plotEntry(player, plot);
|
||||
}
|
||||
if (plot.deny_entry(player)) {
|
||||
if (!PlotMain.hasPermission(player, "plots.admin.entry.denied")) {
|
||||
event.setCancelled(true);
|
||||
return;
|
||||
}
|
||||
}
|
||||
} else if (leftPlot(f, q)) {
|
||||
final Plot plot = getCurrentPlot(event.getFrom());
|
||||
plot = getCurrentPlot(event.getFrom());
|
||||
plotExit(player, plot);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue