Factions/src/com/massivecraft/factions/commands/FCommandSaveAll.java

40 lines
883 B
Java
Raw Normal View History

2011-07-18 22:06:02 +02:00
package com.massivecraft.factions.commands;
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 18:35:39 +02:00
public class FCommandSaveAll extends FCommand
{
2011-05-10 19:18:35 +02:00
2011-10-09 18:35:39 +02:00
public FCommandSaveAll()
{
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 18:35:39 +02:00
this.permission = Permission.COMMAND_SAVE.node;
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
}
}