2017-01-06 22:45:59 +01:00
|
|
|
From 18660b67f133ee9c2afc344d0344208bb10082b6 Mon Sep 17 00:00:00 2001
|
2016-03-29 04:43:05 +02: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
|
2017-01-06 22:45:59 +01:00
|
|
|
index c3c4803..3661821 100644
|
2016-03-29 04:43:05 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2017-01-06 22:45:59 +01:00
|
|
|
@@ -740,6 +740,14 @@ public final class CraftServer implements Server {
|
2016-03-29 04:43:05 +02:00
|
|
|
world.paperConfig.init(); // Paper
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ for (Plugin plugin : pluginManager.getPlugins()) {
|
|
|
|
+ entityMetadata.removeAll(plugin);
|
|
|
|
+ worldMetadata.removeAll(plugin);
|
|
|
|
+ playerMetadata.removeAll(plugin);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
pluginManager.clearPlugins();
|
|
|
|
commandMap.clearCommands();
|
|
|
|
resetRecipes();
|
|
|
|
--
|
2016-12-17 05:13:45 +01:00
|
|
|
2.9.3
|
2016-03-29 04:43:05 +02:00
|
|
|
|