2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-05-10 19:18:35 +02:00
|
|
|
|
2013-04-09 12:56:29 +02:00
|
|
|
import com.massivecraft.factions.Perm;
|
2011-05-10 19:18:35 +02:00
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public class CmdFactionsLock extends FCommand {
|
2011-05-10 19:18:35 +02:00
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
// TODO: This solution needs refactoring.
|
|
|
|
/*
|
|
|
|
factions.lock:
|
2012-03-13 14:27:03 +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
|
|
|
*/
|
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public CmdFactionsLock()
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
|
|
|
super();
|
|
|
|
this.aliases.add("lock");
|
2011-05-10 19:18:35 +02:00
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
//this.requiredArgs.add("");
|
2011-10-15 19:46:44 +02:00
|
|
|
this.optionalArgs.put("on/off", "flip");
|
2011-06-10 21:22:29 +02:00
|
|
|
|
2013-04-09 12:56:29 +02:00
|
|
|
this.permission = Perm.LOCK.node;
|
2011-10-09 21:57:43 +02:00
|
|
|
this.disableOnLock = false;
|
2011-05-10 19:18:35 +02:00
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
senderMustBePlayer = false;
|
|
|
|
senderMustBeMember = false;
|
2011-10-23 17:55:53 +02:00
|
|
|
senderMustBeOfficer = false;
|
|
|
|
senderMustBeLeader = false;
|
2011-05-10 19:18:35 +02:00
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-10-09 14:53:38 +02:00
|
|
|
public void perform()
|
|
|
|
{
|
2011-10-09 21:57:43 +02:00
|
|
|
p.setLocked(this.argAsBool(0, ! p.getLocked()));
|
2011-10-09 14:53:38 +02:00
|
|
|
|
2011-10-09 21:57:43 +02:00
|
|
|
if( p.getLocked())
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
msg("<i>Factions is now locked");
|
2011-10-09 14:53:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
msg("<i>Factions in now unlocked");
|
2011-05-10 19:18:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|