diff --git a/patches/api/0469-Brigadier-based-command-API.patch b/patches/api/0469-Brigadier-based-command-API.patch index 0f9cf5b83ce29..a48f15f8318c0 100644 --- a/patches/api/0469-Brigadier-based-command-API.patch +++ b/patches/api/0469-Brigadier-based-command-API.patch @@ -548,11 +548,11 @@ index 0000000000000000000000000000000000000000..712db7acae2f9818a3b112f770ee7702 + * Checks whether a command sender can receive and run the root command. + * + * @param sender the command sender trying to execute the command -+ * @return whether the command sender fulfill the root command requirement ++ * @return whether the command sender fulfills the root command requirement + * @see #permission() + */ + @ApiStatus.OverrideOnly -+ default boolean requires(final @NotNull CommandSender sender) { ++ default boolean canUse(final @NotNull CommandSender sender) { + return this.permission() == null || sender.hasPermission(this.permission()); + } +