Saber-Factions/src/main/java/com/massivecraft/factions/cmd/CmdLock.java

44 lines
1.1 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-05-10 19:18:35 +02:00
import com.massivecraft.factions.struct.Permission;
import com.massivecraft.factions.zcore.util.TL;
2011-05-10 19:18:35 +02:00
2011-10-09 20:10:19 +02:00
public class CmdLock extends FCommand {
2014-04-04 20:55:21 +02:00
// TODO: This solution needs refactoring.
/*
factions.lock:
description: use the /f lock [on/off] command to temporarily lock the data files from being overwritten
default: op
*/
2014-04-04 20:55:21 +02:00
public CmdLock() {
2014-07-01 22:10:18 +02:00
super();
this.aliases.add("lock");
2014-04-04 20:55:21 +02:00
//this.requiredArgs.add("");
this.optionalArgs.put("on/off", "flip");
2014-07-01 22:10:18 +02:00
this.permission = Permission.LOCK.node;
this.disableOnLock = false;
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
senderMustBePlayer = false;
senderMustBeMember = false;
senderMustBeModerator = false;
2018-03-26 23:43:15 +02:00
senderMustBeColeader = false;
2014-04-04 20:55:21 +02:00
senderMustBeAdmin = false;
}
@Override
public void perform() {
p.setLocked(this.argAsBool(0, !p.getLocked()));
2014-12-11 17:05:04 +01:00
msg(p.getLocked() ? TL.COMMAND_LOCK_LOCKED : TL.COMMAND_LOCK_UNLOCKED);
2014-04-04 20:55:21 +02:00
}
@Override
public TL getUsageTranslation() {
return TL.COMMAND_LOCK_DESCRIPTION;
}
2011-05-10 19:18:35 +02:00
}