mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-26 19:07:40 +01:00
Fix unintentional change to default "overridePermissions" argument (#11759)
This commit is contained in:
parent
1dc6ad1df0
commit
85c428b0be
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user