From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Jake Potrebic Date: Tue, 27 Jun 2023 16:32:39 -0700 Subject: [PATCH] Improve command function perm level checks diff --git a/src/main/java/net/minecraft/commands/CommandSourceStack.java b/src/main/java/net/minecraft/commands/CommandSourceStack.java index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 --- a/src/main/java/net/minecraft/commands/CommandSourceStack.java +++ b/src/main/java/net/minecraft/commands/CommandSourceStack.java @@ -0,0 +0,0 @@ public class CommandSourceStack implements ExecutionCommandSource= i) || this.getBukkitSender().hasPermission(bukkitPermission); + // Paper start + boolean hasPermissionLevel = this.permissionLevel >= i; + if (this.source == CommandSource.NULL) { + return hasPermissionLevel; + } else { + return (!this.getLevel().getCraftServer().ignoreVanillaPermissions && hasPermissionLevel) || this.getBukkitSender().hasPermission(bukkitPermission); + } + // Paper end } // CraftBukkit end