Add kit inventory

This commit is contained in:
TDSTOS
2025-12-11 19:47:45 +01:00
parent c741739cdd
commit 1acb5681fc
5 changed files with 271 additions and 104 deletions

View File

@@ -18,12 +18,14 @@ class KitsCommand(
label: String,
args: Array<out String>
): Boolean {
if (sender !is Player) {
if ( sender !is Player )
{
sender.sendMessage("§cOnly players can use this command.")
return true
}
kitInventoryManager.openKitInventory(sender, 1)
kitInventoryManager.openKitInventory( sender, 1 )
return true
}
}