47 lines
934 B
Java
47 lines
934 B
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.Perm;
|
|
|
|
public class CmdFactionsLock extends FCommand {
|
|
|
|
// 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
|
|
*/
|
|
|
|
public CmdFactionsLock()
|
|
{
|
|
super();
|
|
this.aliases.add("lock");
|
|
|
|
//this.requiredArgs.add("");
|
|
this.optionalArgs.put("on/off", "flip");
|
|
|
|
this.permission = Perm.LOCK.node;
|
|
this.disableOnLock = false;
|
|
|
|
senderMustBePlayer = false;
|
|
senderMustBeMember = false;
|
|
senderMustBeOfficer = false;
|
|
senderMustBeLeader = false;
|
|
}
|
|
|
|
@Override
|
|
public void perform()
|
|
{
|
|
p.setLocked(this.argAsBool(0, ! p.getLocked()));
|
|
|
|
if( p.getLocked())
|
|
{
|
|
msg("<i>Factions is now locked");
|
|
}
|
|
else
|
|
{
|
|
msg("<i>Factions in now unlocked");
|
|
}
|
|
}
|
|
|
|
}
|