This commit is contained in:
Luca
2021-11-23 16:58:23 +01:00
parent e1fba0573c
commit 4ce0e46b0d
4 changed files with 78 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import rip.tilly.bedwars.commands.arena.ArenaCommand;
import rip.tilly.bedwars.commands.level.LevelCommand;
import rip.tilly.bedwars.commands.party.PartyCommand;
import rip.tilly.bedwars.commands.setspawn.SetSpawnCommand;
import rip.tilly.bedwars.commands.spectate.SpectateCommand;
import rip.tilly.bedwars.commands.toggle.ToggleCommand;
import rip.tilly.bedwars.commands.xp.XpCommand;
@ -24,5 +25,7 @@ public class CommandManager {
this.main.getCommand("p").setExecutor(new PartyCommand());
this.main.getCommand("arena").setExecutor(new ArenaCommand());
this.main.getCommand("toggle").setExecutor(new ToggleCommand());
this.main.getCommand("spectate").setExecutor(new SpectateCommand());
this.main.getCommand("spec").setExecutor(new SpectateCommand());
}
}