2019-06-14 02:27:40 +00:00
|
|
|
From 287ac1f2fdcbcaa146decc4f3942fe2fddf43945 Mon Sep 17 00:00:00 2001
|
2016-03-29 02:43:05 +00:00
|
|
|
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
|
2019-06-06 15:36:57 +00:00
|
|
|
index 68a40c12a9..86aa2ad322 100644
|
2016-03-29 02:43:05 +00:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2019-04-26 01:24:00 +00:00
|
|
|
@@ -795,8 +795,18 @@ public final class CraftServer implements Server {
|
2016-03-29 02:43:05 +00:00
|
|
|
world.paperConfig.init(); // Paper
|
|
|
|
}
|
|
|
|
|
2017-07-15 19:38:16 +00:00
|
|
|
+ Plugin[] pluginClone = pluginManager.getPlugins().clone(); // Paper
|
|
|
|
pluginManager.clearPlugins();
|
|
|
|
commandMap.clearCommands();
|
|
|
|
+
|
2016-03-29 02:43:05 +00:00
|
|
|
+ // Paper start
|
2017-07-15 19:38:16 +00:00
|
|
|
+ for (Plugin plugin : pluginClone) {
|
2016-03-29 02:43:05 +00:00
|
|
|
+ entityMetadata.removeAll(plugin);
|
|
|
|
+ worldMetadata.removeAll(plugin);
|
|
|
|
+ playerMetadata.removeAll(plugin);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
resetRecipes();
|
2017-07-15 19:38:16 +00:00
|
|
|
reloadData();
|
|
|
|
org.spigotmc.SpigotConfig.registerCommands(); // Spigot
|
2016-03-29 02:43:05 +00:00
|
|
|
--
|
2019-04-23 04:47:07 +00:00
|
|
|
2.21.0
|
2016-03-29 02:43:05 +00:00
|
|
|
|