Fix unintentional change to default "overridePermissions" argument (#11759)

This commit is contained in:
Isaac - The456 2024-12-21 09:25:14 +00:00 committed by GitHub
parent 1dc6ad1df0
commit 85c428b0be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,7 +5,7 @@
private EntitySelector parse(StringReader reader, boolean allowSelectors) throws CommandSyntaxException {
+ // CraftBukkit start
+ return this.parse(reader, allowSelectors, true);
+ return this.parse(reader, allowSelectors, false);
+ }
+ public EntitySelector parse(StringReader reader, boolean allowSelectors, boolean overridePermissions) throws CommandSyntaxException {
+ // CraftBukkit end