2020-05-06 09:48:49 +00:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2018-07-16 20:08:09 +00:00
From: Aikar <aikar@aikar.co>
Date: Fri, 17 Jun 2016 20:50:11 -0400
Subject: [PATCH] Fix Old Sign Conversion
1) Sign loading code was trying to parse the JSON before the check for oldSign.
That code could then skip the old sign converting code if it triggers a JSON parse exception.
2) New Mojang Schematic system has Tile Entities in the new converted format, but missing the Bukkit.isConverted flag
This causes Igloos and such to render broken signs. We fix this by ignoring sign conversion for Defined Structures
diff --git a/src/main/java/net/minecraft/server/DefinedStructure.java b/src/main/java/net/minecraft/server/DefinedStructure.java
2020-06-25 11:00:35 +00:00
index 637632b1324e2cdc80cecc4a5a94dc9379312f30..05aae52e662f7effbfb358a5fa6e33c3c4d86001 100644
2018-07-16 20:08:09 +00:00
--- a/src/main/java/net/minecraft/server/DefinedStructure.java
+++ b/src/main/java/net/minecraft/server/DefinedStructure.java
2020-06-25 11:00:35 +00:00
@@ -242,9 +242,11 @@ public class DefinedStructure {
definedstructure_blockinfo.c.setLong("LootTableSeed", random.nextLong());
}
2019-04-27 06:26:04 +00:00
+ tileentity.isLoadingStructure = true; // Paper
2020-06-25 11:00:35 +00:00
tileentity.load(definedstructure_blockinfo.b, definedstructure_blockinfo.c);
2019-04-27 06:26:04 +00:00
tileentity.a(definedstructureinfo.c());
tileentity.a(definedstructureinfo.d());
+ tileentity.isLoadingStructure = false; // Paper
2018-07-16 20:08:09 +00:00
}
2019-04-27 06:26:04 +00:00
}
2018-07-16 20:08:09 +00:00
diff --git a/src/main/java/net/minecraft/server/TileEntity.java b/src/main/java/net/minecraft/server/TileEntity.java
2020-06-25 11:00:35 +00:00
index ab0f9a9d69c801e47002039c41c7c3393fc2f403..967aec7ce9a7fbbb42b51d1ed281db005e107c2c 100644
2018-07-16 20:08:09 +00:00
--- a/src/main/java/net/minecraft/server/TileEntity.java
+++ b/src/main/java/net/minecraft/server/TileEntity.java
2019-05-14 02:20:58 +00:00
@@ -20,6 +20,7 @@ public abstract class TileEntity implements KeyedObject { // Paper
2019-07-05 02:13:38 +00:00
public CraftPersistentDataContainer persistentDataContainer;
2019-05-06 02:58:04 +00:00
// CraftBukkit end
2019-04-27 06:26:04 +00:00
private static final Logger LOGGER = LogManager.getLogger();
2018-07-16 20:08:09 +00:00
+ boolean isLoadingStructure = false; // Paper
2019-12-11 23:43:22 +00:00
private final TileEntityTypes<?> tileType; public TileEntityTypes getTileEntityType() { return tileType; } // Paper - OBFHELPER
2019-04-27 06:26:04 +00:00
@Nullable
2018-07-16 20:08:09 +00:00
protected World world;
diff --git a/src/main/java/net/minecraft/server/TileEntitySign.java b/src/main/java/net/minecraft/server/TileEntitySign.java
2020-06-25 11:00:35 +00:00
index b7b7d8966ed3390cb828cdd08e4e12d75024d784..8e77c662f7d970d8ff86f6c5b9bccc598442594d 100644
2018-07-16 20:08:09 +00:00
--- a/src/main/java/net/minecraft/server/TileEntitySign.java
+++ b/src/main/java/net/minecraft/server/TileEntitySign.java
2020-06-25 11:00:35 +00:00
@@ -59,13 +59,14 @@ public class TileEntitySign extends TileEntity implements ICommandListener { //
2018-07-16 20:08:09 +00:00
}
try {
2020-06-25 11:00:35 +00:00
- IChatMutableComponent ichatmutablecomponent = IChatBaseComponent.ChatSerializer.a(s.isEmpty() ? "\"\"" : s);
+ //IChatMutableComponent ichatmutablecomponent = IChatBaseComponent.ChatSerializer.a(s.isEmpty() ? "\"\"" : s); // Paper - move down - the old format might throw a json error
2018-07-16 20:08:09 +00:00
- if (oldSign) {
+ if (oldSign && !isLoadingStructure) { // Paper - saved structures will be in the new format, but will not have isConverted
lines[i] = org.bukkit.craftbukkit.util.CraftChatMessage.fromString(s)[0];
continue;
}
// CraftBukkit end
2020-06-25 11:00:35 +00:00
+ IChatMutableComponent ichatmutablecomponent = IChatBaseComponent.ChatSerializer.a(s.isEmpty() ? "\"\"" : s); // Paper - after old sign
2018-07-16 20:08:09 +00:00
if (this.world instanceof WorldServer) {
try {