1.4 Beta Initiated

- Fixed F Inspect
- Added F Global - Toggle Global Chat
- Added F ViewChest - View a Factions Chest
- Updated Perms in plugin.yml
This commit is contained in:
Driftay
2019-06-30 02:20:17 -04:00
parent 3481c1d275
commit 5c2b220880
7 changed files with 56 additions and 2 deletions

View File

@@ -0,0 +1,47 @@
package com.massivecraft.factions.cmd;
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.SaberFactions;
import com.massivecraft.factions.struct.Permission;
import com.massivecraft.factions.zcore.util.TL;
public class CmdViewChest extends FCommand {
public CmdViewChest() {
this.aliases.add("viewchest");
this.aliases.add("viewpv");
this.requiredArgs.add("faction name");
this.permission = Permission.VIEWCHEST.node;
this.disableOnLock = false;
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = false;
senderMustBeAdmin = false;
}
@Override
public void perform() {
if (!SaberFactions.plugin.getConfig().getBoolean("fchest.Enabled")) {
fme.msg(TL.GENERIC_DISABLED);
return;
}
Faction faction = this.argAsFaction(0, fme == null ? null : myFaction);
if (faction == null) {
return;
}
me.openInventory(faction.getChestInventory());
}
@Override
public TL getUsageTranslation() {
return TL.COMMAND_VIEWCHEST_DESCRIPTION;
}
}