aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0072-Remove-Metadata-on-reload.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-Server-Patches/0072-Remove-Metadata-on-reload.patch')
-rw-r--r--Spigot-Server-Patches/0072-Remove-Metadata-on-reload.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/Spigot-Server-Patches/0072-Remove-Metadata-on-reload.patch b/Spigot-Server-Patches/0072-Remove-Metadata-on-reload.patch
new file mode 100644
index 0000000000..2e8a4e7011
--- /dev/null
+++ b/Spigot-Server-Patches/0072-Remove-Metadata-on-reload.patch
@@ -0,0 +1,30 @@
+From 18e4daa1e2ed77af8da88506c84d13f813eeebd2 Mon Sep 17 00:00:00 2001
+From: Aikar <[email protected]>
+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
+index 40091231e..540d57855 100644
+--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
++++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
+@@ -741,6 +741,14 @@ public final class CraftServer implements Server {
+ 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();
+--
+2.12.0.windows.1
+