Skip to content

Commit

Permalink
*
Browse files Browse the repository at this point in the history
  • Loading branch information
boy0001 committed Jun 19, 2016
1 parent c3dd28c commit 9fa28e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void execute(final PlotPlayer player, String[] args, RunnableVal3<Command
final Plot plot = check(player.getCurrentPlot(), C.NOT_IN_PLOT);
checkTrue(plot.isOwner(player.getUUID()) || Permissions.hasPermission(player, "plots.admin.command.clear"), C.NO_PLOT_PERMS);
checkTrue(plot.getRunning() == 0, C.WAIT_FOR_TIMER);
checkTrue(!Settings.Done.RESTRICT_BUILDING ||(!Flags.DONE.isSet(plot) || Permissions.hasPermission(player, "plots.continue"), C.DONE_ALREADY_DONE);
checkTrue(!Settings.Done.RESTRICT_BUILDING || !Flags.DONE.isSet(plot) || Permissions.hasPermission(player, "plots.continue"), C.DONE_ALREADY_DONE);
confirm.run(this, new Runnable() {
@Override
public void run() {
Expand Down

0 comments on commit 9fa28e1

Please sign in to comment.