added party command

This commit is contained in:
Trixkz
2021-11-21 16:19:33 -05:00
parent ceafe6ebfb
commit f015738ad2
10 changed files with 273 additions and 1 deletions

View File

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