Add /help command and various gameplay fixes

Introduce a HelpCommand (/help) and register it in SpeedHG; add its localized help text and plugin.yml entry. Prevent kit ability use while in gladiator by checking metadata in KitEventDispatcher and add a matching translation key. Early-return in KitCommand during ENDING state. Fix English message in TeamCommand and adjust spacing in LeaderboardMenu lore. Remove an unused import in SpeedHG and add necessary imports.
This commit is contained in:
TDSTOS
2026-04-12 07:20:20 +02:00
parent 140ee8ef3e
commit 4a28c58d2e
8 changed files with 51 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ class TeamCommand : CommandExecutor, TabCompleter {
args: Array<out String>
): Boolean {
val player = sender as? Player ?: run {
sender.sendMessage("§cNur Spieler können diesen Befehl nutzen.")
sender.sendMessage("§cOnly players can use this command.")
return true
}