fix typo in builtin command conditions (#115)

This commit is contained in:
rockquiet 2024-01-16 02:31:35 +01:00 committed by Matt Worzala
parent 6a19940b4d
commit 3be7b09b7d

View File

@ -20,7 +20,7 @@ public class Conditions {
public static boolean consoleOnly(CommandSender sender, String commandString) {
if (!(sender instanceof ConsoleSender)) {
sender.sendMessage(Component.text("The command is only available form the console"));
sender.sendMessage(Component.text("The command is only available from the console"));
return false;
}
return true;