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

44 lines
1.2 KiB
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;
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;
2018-03-26 23:43:15 +02:00
senderMustBeColeader = false;
2014-04-04 20:55:21 +02:00
senderMustBeAdmin = false;
}
@Override
public void perform() {
FPlayers.getInstance().forceSave(false);
Factions.getInstance().forceSave(false);
Board.getInstance().forceSave(false);
2014-07-01 22:10:18 +02:00
Conf.save();
msg(TL.COMMAND_SAVEALL_SUCCESS);
2014-04-04 20:55:21 +02:00
}
@Override
public TL getUsageTranslation() {
return TL.COMMAND_SAVEALL_DESCRIPTION;
}
2011-10-10 01:21:05 +02:00
}