3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 04:20:08 +01:00

SPIGOT-2321: Fully check Vanilla command permissions

Dieser Commit ist enthalten in:
md_5 2016-05-26 21:06:28 +10:00
Ursprung 042911fef4
Commit 3c19fef26e

Datei anzeigen

@ -492,7 +492,7 @@
+ if ("".equals(s)) {
+ return getBukkitEntity().isOp();
+ }
+ return true;
+ return getBukkitEntity().hasPermission("minecraft.command." + s);
+ // CraftBukkit end
}