2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-05-10 19:18:35 +02:00
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2014-12-08 00:12:52 +01:00
|
|
|
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.
|
|
|
|
/*
|
2014-04-05 22:42:01 +02:00
|
|
|
factions.lock:
|
2012-03-13 14:26:54 +01:00
|
|
|
description: use the /f lock [on/off] command to temporarily lock the data files from being overwritten
|
|
|
|
default: op
|
2011-10-09 14:53:38 +02:00
|
|
|
*/
|
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() {
|
2018-11-07 17:14:42 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-01-22 00:58:33 +01:00
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_LOCK_DESCRIPTION;
|
|
|
|
}
|
|
|
|
|
2011-05-10 19:18:35 +02:00
|
|
|
}
|