Saber-Factions/src/com/massivecraft/factions/cmd/CmdSaveAll.java

41 lines
891 B
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
2011-10-09 18:35:39 +02:00
import com.massivecraft.factions.Board;
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.FPlayers;
import com.massivecraft.factions.Factions;
import com.massivecraft.factions.struct.Permission;
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-10-09 21:57:43 +02:00
this.permission = Permission.SAVE.node;
this.disableOnLock = false;
2011-10-09 18:35:39 +02:00
senderMustBePlayer = false;
senderMustBeMember = false;
senderMustBeModerator = false;
senderMustBeAdmin = false;
2011-05-10 19:18:35 +02:00
}
@Override
2011-10-09 18:35:39 +02:00
public void perform()
{
FPlayers.i.saveToDisc();
Factions.i.saveToDisc();
Board.save();
Conf.save();
sendMessageParsed("<i>Factions saved to disk!");
2011-05-10 19:18:35 +02:00
}
}