Fix plot download/done

This commit is contained in:
Jesse Boyd 2016-04-17 03:55:55 +10:00 committed by MattBDev
parent 10bf03f81b
commit 9b22f38ff0

View File

@ -41,8 +41,11 @@ public class Download extends SubCommand {
MainUtil.sendMessage(plr, C.PLOT_UNOWNED);
return false;
}
if ((!plot.isOwner(plr.getUUID()) || (Settings.DOWNLOAD_REQUIRES_DONE && (FlagManager.getPlotFlagRaw(plot, "done") != null))) && !Permissions
.hasPermission(plr, "plots.admin.command.download")) {
if ((Settings.DOWNLOAD_REQUIRES_DONE && (FlagManager.getPlotFlagRaw(plot, "done") == null)) && !Permissions.hasPermission(plr, "plots.admin.command.download")) {
MainUtil.sendMessage(plr, C.DONE_NOT_DONE);
return false;
}
if ((!plot.isOwner(plr.getUUID()))) {
MainUtil.sendMessage(plr, C.NO_PLOT_PERMS);
return false;
}