package com.massivecraft.factions.cmd; import com.massivecraft.factions.Conf; import com.massivecraft.factions.P; import com.massivecraft.factions.shop.ShopConfig; import com.massivecraft.factions.struct.Permission; import com.massivecraft.factions.zcore.util.TL; public class CmdReload extends FCommand { public CmdReload() { super(); this.aliases.add("reload"); this.permission = Permission.RELOAD.node; this.disableOnLock = false; senderMustBePlayer = false; senderMustBeMember = false; senderMustBeModerator = false; senderMustBeColeader = false; senderMustBeAdmin = false; } @Override public void perform() { long timeInitStart = System.currentTimeMillis(); Conf.load(); Conf.save(); P.p.reloadConfig(); P.p.loadLang(); ShopConfig.loadShop(); if (P.p.getConfig().getBoolean("enable-faction-flight")) { P.p.factionsFlight = true; } long timeReload = (System.currentTimeMillis() - timeInitStart); msg(TL.COMMAND_RELOAD_TIME, timeReload); } @Override public TL getUsageTranslation() { return TL.COMMAND_RELOAD_DESCRIPTION; } }