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

28 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
2014-04-04 20:55:21 +02:00
public class CmdSaveAll extends FCommand {
public CmdSaveAll() {
2014-07-01 21:52:40 +02:00
super(); this.aliases.add("saveall"); this.aliases.add("save");
2014-04-04 20:55:21 +02:00
//this.requiredArgs.add("");
//this.optionalArgs.put("", "");
2014-07-01 21:52:40 +02:00
this.permission = Permission.SAVE.node; this.disableOnLock = false;
2014-04-04 20:55:21 +02:00
2014-07-01 21:52:40 +02:00
senderMustBePlayer = false; senderMustBeMember = false; senderMustBeModerator = false;
2014-04-04 20:55:21 +02:00
senderMustBeAdmin = false;
}
@Override
public void perform() {
2014-07-01 21:52:40 +02:00
FPlayers.i.saveToDisc(); Factions.i.saveToDisc(); Board.save(); Conf.save(); msg("<i>Factions saved to disk!");
2014-04-04 20:55:21 +02:00
}
2011-10-10 01:21:05 +02:00
}