fix typo where the command said "Inavlid" instead of "Invalid"

This commit is contained in:
Hiro
2023-11-28 02:13:15 +02:00
parent 09d169c582
commit 0789772464

View File

@@ -128,9 +128,9 @@ public class CommandManager {
} }
} else { } else {
if (sender != null) { if (sender != null) {
sender.sendMessage("Inavlid Command!"); sender.sendMessage("Invalid Command!");
} else { } else {
LunarCore.getLogger().info("Inavlid Command!"); LunarCore.getLogger().info("Invalid Command!");
} }
} }
} }