ee52016a87
Also included: -Heavily optimized loading process -Optimizations for various commands.
37 lines
1013 B
Java
37 lines
1013 B
Java
package com.massivecraft.factions.cmd;
|
|
|
|
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;
|
|
|
|
public class CmdSaveAll extends FCommand {
|
|
|
|
public CmdSaveAll() {
|
|
super();
|
|
this.aliases.add("saveall");
|
|
this.aliases.add("save");
|
|
|
|
//this.requiredArgs.add("");
|
|
//this.optionalArgs.put("", "");
|
|
|
|
this.permission = Permission.SAVE.node;
|
|
this.disableOnLock = false;
|
|
|
|
senderMustBePlayer = false;
|
|
senderMustBeMember = false;
|
|
senderMustBeModerator = false;
|
|
senderMustBeAdmin = false;
|
|
}
|
|
|
|
@Override
|
|
public void perform() {
|
|
FPlayers.getInstance().forceSave();
|
|
Factions.getInstance().forceSave();
|
|
Board.getInstance().forceSave();
|
|
Conf.save();
|
|
msg("<i>Factions saved to disk!");
|
|
}
|
|
|
|
} |