first time connect and add treasure command
Some checks failed
Build / build (push) Failing after 1m20s

This commit is contained in:
unurled 2024-05-25 18:41:17 +02:00
parent 78726ed651
commit 8598028321
Signed by: unurled
GPG key ID: FDBC9CBE1F82423F
3 changed files with 31 additions and 0 deletions

View file

@ -10,6 +10,7 @@ import me.unurled.sacredrealms.sr.commands.admin.EntityTypeCommand;
import me.unurled.sacredrealms.sr.commands.admin.ItemCommand;
import me.unurled.sacredrealms.sr.commands.admin.LevelCommand;
import me.unurled.sacredrealms.sr.commands.admin.SpawnEntityCommand;
import me.unurled.sacredrealms.sr.commands.admin.TreasureCommand;
import me.unurled.sacredrealms.sr.commands.player.ResetAdventureCommand;
import me.unurled.sacredrealms.sr.managers.Manager;
import org.bukkit.command.PluginCommand;
@ -45,6 +46,7 @@ public class CommandManager extends Manager {
registerCommand("item", ItemCommand.class);
registerCommand("treasure", ItemCommand.class);
registerCommand("spawnentity", SpawnEntityCommand.class);
registerCommand("treasure", TreasureCommand.class);
registerCommand("resetadventure", ResetAdventureCommand.class);
}