42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.P;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
import com.massivecraft.factions.zcore.fupgrades.FUpgradesGUI;
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
|
|
public class CmdUpgrades extends FCommand {
|
|
public CmdUpgrades() {
|
|
super();
|
|
this.aliases.add("upgrades");
|
|
this.aliases.add("upgrade");
|
|
|
|
//this.requiredArgs.add("");
|
|
this.optionalArgs.put("mobs/crops/exp", "");
|
|
|
|
this.permission = Permission.UPGRADES.node;
|
|
this.disableOnLock = true;
|
|
|
|
senderMustBePlayer = true;
|
|
senderMustBeMember = true;
|
|
senderMustBeModerator = false;
|
|
senderMustBeAdmin = false;
|
|
}
|
|
|
|
@Override
|
|
public void perform() {
|
|
if (!P.p.getConfig().getBoolean("fupgrades.Enabled")) {
|
|
fme.sendMessage("This command is disabled!");
|
|
return;
|
|
}
|
|
FUpgradesGUI fgui = new FUpgradesGUI();
|
|
fgui.openMainMenu(fme);
|
|
}
|
|
|
|
@Override
|
|
public TL getUsageTranslation() {
|
|
return TL.COMMAND_UPGRADES_DESCRIPTION;
|
|
}
|
|
|
|
}
|