mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 03:59:22 +00:00
Fix for /plot weanywhere
This commit is contained in:
parent
f70b7c3f93
commit
f119f6996d
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ import java.util.Set;
|
|||
if ((f.getBlockX() != t.getBlockX()) || (f.getBlockZ() != t.getBlockZ())) {
|
||||
final PlotId idF = PlayerFunctions.getPlot(f);
|
||||
final PlotId idT = PlayerFunctions.getPlot(t);
|
||||
if (PlotMain.hasPermission(e.getPlayer(), "plots.worldedit.bypass")) {
|
||||
if ((!PWE.hasMask(e.getPlayer())) && PlotMain.hasPermission(e.getPlayer(), "plots.worldedit.bypass")) {
|
||||
return;
|
||||
}
|
||||
if ((idT != null) && !(idF == idT)) {
|
||||
|
|
Loading…
Reference in a new issue