geforkt von Mirrors/Paper
Print legacy load reason in debug mode
By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
Ursprung
7867f1cb3e
Commit
259935c4f7
@ -23,6 +23,7 @@ import net.minecraft.server.IRegistry;
|
|||||||
import net.minecraft.server.Item;
|
import net.minecraft.server.Item;
|
||||||
import net.minecraft.server.Items;
|
import net.minecraft.server.Items;
|
||||||
import net.minecraft.server.MinecraftKey;
|
import net.minecraft.server.MinecraftKey;
|
||||||
|
import net.minecraft.server.MinecraftServer;
|
||||||
import net.minecraft.server.NBTBase;
|
import net.minecraft.server.NBTBase;
|
||||||
import net.minecraft.server.NBTTagCompound;
|
import net.minecraft.server.NBTTagCompound;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
@ -254,6 +255,9 @@ public final class CraftLegacy {
|
|||||||
|
|
||||||
static {
|
static {
|
||||||
System.err.println("Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!");
|
System.err.println("Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!");
|
||||||
|
if (MinecraftServer.getServer() != null && MinecraftServer.getServer().isDebugging()) {
|
||||||
|
new Exception().printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
SPAWN_EGGS.put((byte) 0, Material.PIG_SPAWN_EGG); // Will be fixed by updateMaterial if possible
|
SPAWN_EGGS.put((byte) 0, Material.PIG_SPAWN_EGG); // Will be fixed by updateMaterial if possible
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren