[+] 1.15 Support Added!

[+] Greatly optmized ALOT of Commands!
[+] Removed Portal Travel Agent (Recoding)
[+] Added Administrator Command F Lookup
This commit is contained in:
Driftay
2019-12-24 09:19:43 -05:00
parent 897fdbf83a
commit 86f92a7fb0
20 changed files with 408 additions and 320 deletions

View File

@@ -163,6 +163,7 @@ public class FCmdRoot extends FCommand implements CommandExecutor {
public CmdDiscord cmdDiscord = new CmdDiscord();
public CmdDebug cmdDebug = new CmdDebug();
public CmdDrain cmdDrain = new CmdDrain();
public CmdLookup cmdLookup = new CmdLookup();
//Variables to know if we already setup certain sub commands
public Boolean discordEnabled = false;
public Boolean checkEnabled = false;
@@ -293,6 +294,7 @@ public class FCmdRoot extends FCommand implements CommandExecutor {
this.addSubCommand(this.cmdConvertConfig);
this.addSubCommand(this.cmdSpawnerLock);
this.addSubCommand(this.cmdDrain);
this.addSubCommand(this.cmdLookup);
addVariableCommands();
if (CommodoreProvider.isSupported()) brigadierManager.build();
}