command arnea

This commit is contained in:
Luca
2021-11-22 13:31:34 +01:00
parent 1b022e25a9
commit cd54d48196
8 changed files with 403 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package rip.tilly.bedwars.managers;
import rip.tilly.bedwars.BedWars;
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;
@ -19,5 +20,6 @@ public class CommandManager {
this.main.getCommand("level").setExecutor(new LevelCommand());
this.main.getCommand("xp").setExecutor(new XpCommand());
this.main.getCommand("party").setExecutor(new PartyCommand());
this.main.getCommand("arena").setExecutor(new ArenaCommand());
}
}