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;
|
2014-12-08 00:12:52 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
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 22:10:18 +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 22:10:18 +02:00
|
|
|
this.permission = Permission.SAVE.node;
|
|
|
|
this.disableOnLock = false;
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
senderMustBePlayer = false;
|
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
2014-04-04 20:55:21 +02:00
|
|
|
senderMustBeAdmin = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform() {
|
2015-08-07 00:41:37 +02:00
|
|
|
FPlayers.getInstance().forceSave(false);
|
|
|
|
Factions.getInstance().forceSave(false);
|
|
|
|
Board.getInstance().forceSave(false);
|
2014-07-01 22:10:18 +02:00
|
|
|
Conf.save();
|
2015-01-24 02:48:49 +01:00
|
|
|
msg(TL.COMMAND_SAVEALL_SUCCESS);
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
2015-01-22 00:58:33 +01:00
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_SAVEALL_DESCRIPTION;
|
|
|
|
}
|
|
|
|
|
2011-10-10 01:21:05 +02:00
|
|
|
}
|