fix typo in builtin command conditions (#115)

(cherry picked from commit 3be7b09b7d)
This commit is contained in:
rockquiet 2024-01-16 02:31:35 +01:00 committed by Matt Worzala
parent 9aa34529a9
commit c421971eaa
1 changed files with 1 additions and 1 deletions

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;