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-09-01 18:51:59 +02:00
|
|
|
index d4016a8890fff0805bacab3e5a556e7316c9ab25..9a3b5b491256537d54c5fd0ac1646b3eb726187d 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-08-09 09:18:08 +02:00
|
|
|
@@ -950,8 +950,16 @@ public final class CraftServer implements Server {
|
2022-06-09 10:51:45 +02:00
|
|
|
world.spigotConfig.init(); // Spigot
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ 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
|
2022-06-09 23:50:05 +02:00
|
|
|
io.papermc.paper.command.PaperCommands.registerCommands(this.console); // Paper
|