added jumpDive game

This commit is contained in:
2025-03-03 01:28:29 +01:00
parent 3f2ba1e428
commit 5ca8ad8bd7
7 changed files with 156 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ public enum Commands {
static {
MinecraftServer.getCommandManager().setUnknownCommandCallback((sender, command) -> {
if(command.isBlank()) return;
new ChatMessage(Icon.ERROR).appendStatic("Unknown command").quote(command).send(sender);
new ChatMessage(Icon.ERROR).appendStatic("Unknown command: ").quote(command).send(sender);
});
}
}