2019-06-30 08:20:17 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
|
|
|
import com.massivecraft.factions.Faction;
|
2019-09-14 21:13:01 +02:00
|
|
|
import com.massivecraft.factions.FactionsPlugin;
|
2019-06-30 08:20:17 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
|
|
|
|
|
|
public class CmdViewChest extends FCommand {
|
|
|
|
|
2019-09-15 11:15:33 +02:00
|
|
|
public CmdViewChest() {
|
|
|
|
super();
|
|
|
|
this.aliases.add("viewchest");
|
|
|
|
this.aliases.add("viewpv");
|
|
|
|
|
|
|
|
this.requiredArgs.add("faction name");
|
|
|
|
|
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.VIEWCHEST)
|
|
|
|
.playerOnly()
|
|
|
|
.build();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform(CommandContext context) {
|
|
|
|
if (!FactionsPlugin.getInstance().getConfig().getBoolean("fchest.Enabled")) {
|
|
|
|
context.msg(TL.GENERIC_DISABLED);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Faction myFaction = context.fPlayer.getFaction();
|
|
|
|
|
|
|
|
Faction faction = context.argAsFaction(0, context.fPlayer == null ? null : myFaction);
|
|
|
|
if (faction == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
context.player.openInventory(context.faction.getChestInventory());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_VIEWCHEST_DESCRIPTION;
|
|
|
|
}
|
2019-06-30 08:20:17 +02:00
|
|
|
}
|
|
|
|
|