aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/unapplied/server/0067-Allow-Reloading-of-Custom-Permissions.patch
diff options
context:
space:
mode:
authorNassim Jahnke <[email protected]>2024-12-03 17:58:41 +0100
committerNassim Jahnke <[email protected]>2024-12-03 17:58:41 +0100
commitc0a3d51ab35930e410fcd9752ceaff6c3f581c24 (patch)
treef53076a8b0787d2f544f73f468df94619e5eb1a5 /patches/unapplied/server/0067-Allow-Reloading-of-Custom-Permissions.patch
parentda7138233f6392e791d790d1c3407414c855f9c2 (diff)
downloadPaper-c0a3d51ab35930e410fcd9752ceaff6c3f581c24.tar.gz
Paper-c0a3d51ab35930e410fcd9752ceaff6c3f581c24.zip
Start update, apply API patches
Diffstat (limited to 'patches/unapplied/server/0067-Allow-Reloading-of-Custom-Permissions.patch')
-rw-r--r--patches/unapplied/server/0067-Allow-Reloading-of-Custom-Permissions.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/patches/unapplied/server/0067-Allow-Reloading-of-Custom-Permissions.patch b/patches/unapplied/server/0067-Allow-Reloading-of-Custom-Permissions.patch
new file mode 100644
index 0000000000..9b62fef16d
--- /dev/null
+++ b/patches/unapplied/server/0067-Allow-Reloading-of-Custom-Permissions.patch
@@ -0,0 +1,35 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: William <[email protected]>
+Date: Fri, 18 Mar 2016 03:30:17 -0400
+Subject: [PATCH] Allow Reloading of Custom Permissions
+
+https://github.com/PaperMC/Paper/issues/49
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
+index 248de665ebf0e1ddfb10616f6213fa344cd88d40..a8ee4d5b932e42367df9e74dacd0e3f1fdbe7d11 100644
+--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
++++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
+@@ -2818,5 +2818,23 @@ public final class CraftServer implements Server {
+ }
+ return this.adventure$audiences;
+ }
++
++ @Override
++ public void reloadPermissions() {
++ pluginManager.clearPermissions();
++ if (io.papermc.paper.configuration.GlobalConfiguration.get().misc.loadPermissionsYmlBeforePlugins) loadCustomPermissions();
++ for (Plugin plugin : pluginManager.getPlugins()) {
++ for (Permission perm : plugin.getDescription().getPermissions()) {
++ try {
++ pluginManager.addPermission(perm);
++ } catch (IllegalArgumentException ex) {
++ getLogger().log(Level.WARNING, "Plugin " + plugin.getDescription().getFullName() + " tried to register permission '" + perm.getName() + "' but it's already registered", ex);
++ }
++ }
++ }
++ if (!io.papermc.paper.configuration.GlobalConfiguration.get().misc.loadPermissionsYmlBeforePlugins) loadCustomPermissions();
++ DefaultPermissions.registerCorePermissions();
++ CraftDefaultPermissions.registerCorePermissions();
++ }
+ // Paper end
+ }