2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Fri, 18 Mar 2016 13:17:38 -0400
|
|
|
|
Subject: [PATCH] Default loading permissions.yml before plugins
|
|
|
|
|
|
|
|
Under previous behavior, plugins were not able to check if a player had a permission
|
|
|
|
if it was defined in permissions.yml. there is no clean way for a plugin to fix that either.
|
|
|
|
|
|
|
|
This will change the order so that by default, permissions.yml loads BEFORE plugins instead of after.
|
|
|
|
|
|
|
|
This gives plugins expected permission checks.
|
|
|
|
|
|
|
|
It also helps improve the expected logic, as servers should set the initial defaults, and then let plugins
|
|
|
|
modify that. Under the previous logic, plugins were unable (cleanly) override permissions.yml.
|
|
|
|
|
|
|
|
A config option has been added for those who depend on the previous behavior, but I don't expect that.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperConfig.java b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2022-03-11 21:13:46 +01:00
|
|
|
index 11e703e8e78fb49a5f53bdbc20d62422b573ae55..364f9196fb89a6e1bb9cd892971b486205b0c631 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperConfig.java
|
2021-11-09 08:59:15 +01:00
|
|
|
@@ -234,4 +234,9 @@ public class PaperConfig {
|
2022-03-04 22:19:57 +01:00
|
|
|
" - Length: " + timeSummary(Timings.getHistoryLength() / 20) +
|
|
|
|
" - Server Name: " + timingsServerName);
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public static boolean loadPermsBeforePlugins = true;
|
|
|
|
+ private static void loadPermsBeforePlugins() {
|
|
|
|
+ loadPermsBeforePlugins = getBoolean("settings.load-permissions-yml-before-plugins", true);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2022-04-16 10:29:50 +02:00
|
|
|
index f3d0cf0f3d5458e587a3da724bee05acacf10594..68ccd0b0797b77c1238aaa2cfed5823f08af9857 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2022-04-16 10:29:50 +02:00
|
|
|
@@ -456,6 +456,7 @@ public final class CraftServer implements Server {
|
2021-06-21 10:41:00 +02:00
|
|
|
if (type == PluginLoadOrder.STARTUP) {
|
|
|
|
this.helpMap.clear();
|
|
|
|
this.helpMap.initializeGeneralTopics();
|
2021-06-11 14:02:28 +02:00
|
|
|
+ if (com.destroystokyo.paper.PaperConfig.loadPermsBeforePlugins) loadCustomPermissions(); // Paper
|
|
|
|
}
|
|
|
|
|
2021-06-21 10:41:00 +02:00
|
|
|
Plugin[] plugins = this.pluginManager.getPlugins();
|
2022-04-16 10:29:50 +02:00
|
|
|
@@ -475,7 +476,7 @@ public final class CraftServer implements Server {
|
2021-06-12 02:57:04 +02:00
|
|
|
this.commandMap.registerServerAliases();
|
2021-06-11 14:02:28 +02:00
|
|
|
DefaultPermissions.registerCorePermissions();
|
|
|
|
CraftDefaultPermissions.registerCorePermissions();
|
2021-06-12 02:57:04 +02:00
|
|
|
- this.loadCustomPermissions();
|
|
|
|
+ if (!com.destroystokyo.paper.PaperConfig.loadPermsBeforePlugins) this.loadCustomPermissions(); // Paper
|
|
|
|
this.helpMap.initializeCommands();
|
|
|
|
this.syncCommands();
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|