2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-05-10 19:18:35 +02:00
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
import com.massivecraft.factions.Board;
|
2013-04-09 13:15:25 +02:00
|
|
|
import com.massivecraft.factions.ConfServer;
|
2013-04-09 13:22:23 +02:00
|
|
|
import com.massivecraft.factions.FPlayerColl;
|
2013-04-09 12:58:39 +02:00
|
|
|
import com.massivecraft.factions.FactionColl;
|
2013-04-09 12:56:29 +02:00
|
|
|
import com.massivecraft.factions.Perm;
|
2011-07-18 22:06:02 +02:00
|
|
|
|
2011-10-09 20:10:19 +02:00
|
|
|
public class CmdSaveAll extends FCommand
|
2011-10-09 18:35:39 +02:00
|
|
|
{
|
2011-05-10 19:18:35 +02:00
|
|
|
|
2011-10-09 20:10:19 +02:00
|
|
|
public CmdSaveAll()
|
2011-10-09 18:35:39 +02:00
|
|
|
{
|
|
|
|
super();
|
|
|
|
this.aliases.add("saveall");
|
|
|
|
this.aliases.add("save");
|
2011-05-10 19:18:35 +02:00
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
//this.requiredArgs.add("");
|
|
|
|
//this.optionalArgs.put("", "");
|
2011-06-08 23:19:02 +02:00
|
|
|
|
2013-04-09 12:56:29 +02:00
|
|
|
this.permission = Perm.SAVE.node;
|
2011-10-09 21:57:43 +02:00
|
|
|
this.disableOnLock = false;
|
2011-10-09 18:35:39 +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 18:35:39 +02:00
|
|
|
public void perform()
|
|
|
|
{
|
2013-04-09 13:22:23 +02:00
|
|
|
FPlayerColl.i.saveToDisc();
|
2013-04-09 12:58:39 +02:00
|
|
|
FactionColl.i.saveToDisc();
|
2011-10-09 18:35:39 +02:00
|
|
|
Board.save();
|
2013-04-09 13:15:25 +02:00
|
|
|
ConfServer.save();
|
2011-10-10 13:40:24 +02:00
|
|
|
msg("<i>Factions saved to disk!");
|
2011-05-10 19:18:35 +02:00
|
|
|
}
|
|
|
|
|
2011-10-10 01:21:05 +02:00
|
|
|
}
|