Begun Adding ChestLogs

//TODO flat file, shift click registry
This commit is contained in:
Driftay
2019-08-18 09:19:41 -04:00
parent 49ec990c2f
commit fdb76f39f5
4 changed files with 131 additions and 4 deletions

View File

@@ -3,6 +3,8 @@ package com.massivecraft.factions.cmd;
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.P;
import com.massivecraft.factions.cmd.alts.CmdAlts;
import com.massivecraft.factions.cmd.chest.CmdChest;
import com.massivecraft.factions.cmd.chest.CmdChestLogs;
import com.massivecraft.factions.cmd.claim.*;
import com.massivecraft.factions.cmd.econ.CmdMoney;
import com.massivecraft.factions.cmd.logout.CmdLogout;
@@ -133,6 +135,7 @@ public class FCmdRoot extends FCommand {
public CmdNotifications cmdNotifications = new CmdNotifications();
public CmdShop cmdShop = new CmdShop();
public CmdMissions cmdMissions = new CmdMissions();
public CmdChestLogs cmdChestLogs = new CmdChestLogs();
public FCmdRoot() {
super();
@@ -245,6 +248,7 @@ public class FCmdRoot extends FCommand {
this.addSubCommand(this.cmdLowPower);
this.addSubCommand(this.cmdTntFill);
this.addSubCommand(this.cmdChest);
this.addSubCommand(this.cmdChestLogs);
this.addSubCommand(this.cmdSetBanner);
this.addSubCommand(this.cmdStrikeSet);
this.addSubCommand(this.cmdSpam);