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

42 lines
1.0 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;
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;
2014-04-04 20:55:21 +02:00
senderMustBeAdmin = false;
}
@Override
public void perform() {
p.setLocked(this.argAsBool(0, !p.getLocked()));
if (p.getLocked()) {
msg("<i>Factions is now locked");
2014-07-01 21:52:40 +02:00
} else {
2014-04-04 20:55:21 +02:00
msg("<i>Factions in now unlocked");
}
}
2011-05-10 19:18:35 +02:00
}