Allow owners and helpers to use WorldEdit //up in their plots

This commit is contained in:
Byteflux 2015-04-16 16:24:22 -07:00
parent c44bf77f32
commit cb68c415ba

View File

@ -134,7 +134,7 @@ public class WEListener implements Listener {
} }
if (this.restrictedcmds.contains(cmd)) { if (this.restrictedcmds.contains(cmd)) {
final Plot plot = MainUtil.getPlot(pp.getLocation()); final Plot plot = MainUtil.getPlot(pp.getLocation());
if ((plot == null) || !(plot.helpers.contains(DBFunc.everyone) || plot.helpers.contains(pp.getUUID()))) { if ((plot == null) || (!plot.isOwner(pp.getUUID()) && !plot.helpers.contains(DBFunc.everyone) && !plot.helpers.contains(pp.getUUID()))) {
e.setCancelled(true); e.setCancelled(true);
} }
return; return;