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:50:14 -0400
|
|
|
|
Subject: [PATCH] Remove Metadata on reload
|
|
|
|
|
|
|
|
Metadata is not meant to persist reload as things break badly with non primitive types
|
|
|
|
This will remove metadata on reload so it does not crash everything if a plugin uses it.
|
|
|
|
|
|
|
|
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 7b7669eea3e86cde007be324e8c567c292c1ebda..d09b9dfdfea5848dcb60ad05d4399b5ed871a795 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
|
|
|
@@ -945,8 +945,16 @@ public final class CraftServer implements Server {
|
2021-06-11 14:02:28 +02:00
|
|
|
world.paperConfig.init(); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
+ Plugin[] pluginClone = pluginManager.getPlugins().clone(); // Paper
|
2021-06-12 02:57:04 +02:00
|
|
|
this.pluginManager.clearPlugins();
|
|
|
|
this.commandMap.clearCommands();
|
2021-06-11 14:02:28 +02:00
|
|
|
+ // Paper start
|
|
|
|
+ for (Plugin plugin : pluginClone) {
|
|
|
|
+ entityMetadata.removeAll(plugin);
|
|
|
|
+ worldMetadata.removeAll(plugin);
|
|
|
|
+ playerMetadata.removeAll(plugin);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
2021-06-12 02:57:04 +02:00
|
|
|
this.reloadData();
|
2021-06-11 14:02:28 +02:00
|
|
|
org.spigotmc.SpigotConfig.registerCommands(); // Spigot
|
2021-06-15 10:38:57 +02:00
|
|
|
com.destroystokyo.paper.PaperConfig.registerCommands(); // Paper
|