42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.*;
|
|
import com.massivecraft.factions.shop.ShopConfig;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
|
|
public class CmdSaveAll extends FCommand {
|
|
|
|
/**
|
|
* @author FactionsUUID Team
|
|
*/
|
|
|
|
public CmdSaveAll() {
|
|
super();
|
|
this.aliases.addAll(Aliases.saveAll);
|
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.SAVE)
|
|
.build();
|
|
}
|
|
|
|
@Override
|
|
public void perform(CommandContext context) {
|
|
FPlayers.getInstance().forceSave(false);
|
|
Factions.getInstance().forceSave(false);
|
|
Board.getInstance().forceSave(false);
|
|
Conf.save();
|
|
try {
|
|
FactionsPlugin.instance.getFlogManager().saveLogs();
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
ShopConfig.saveShop();
|
|
context.msg(TL.COMMAND_SAVEALL_SUCCESS);
|
|
}
|
|
|
|
@Override
|
|
public TL getUsageTranslation() {
|
|
return TL.COMMAND_SAVEALL_DESCRIPTION;
|
|
}
|
|
|
|
} |