2018-09-01 00:56:57 +02:00
|
|
|
From f272cc446d703160be856e5630def2168f8f002e Mon Sep 17 00:00:00 2001
|
2018-07-16 22:08:09 +02: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
|
2018-09-01 00:56:57 +02:00
|
|
|
index 987d944dbd..5f6fb44ffa 100644
|
2018-07-16 22:08:09 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/DefinedStructure.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/DefinedStructure.java
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -190,9 +190,11 @@ public class DefinedStructure {
|
|
|
|
definedstructure$blockinfo1.c.setInt("x", blockposition1.getX());
|
|
|
|
definedstructure$blockinfo1.c.setInt("y", blockposition1.getY());
|
|
|
|
definedstructure$blockinfo1.c.setInt("z", blockposition1.getZ());
|
|
|
|
+ tileentity2.isLoadingStructure = true; // Paper
|
|
|
|
tileentity2.load(definedstructure$blockinfo1.c);
|
|
|
|
tileentity2.a(definedstructureinfo.b());
|
|
|
|
tileentity2.a(definedstructureinfo.c());
|
|
|
|
+ tileentity2.isLoadingStructure = false; // Paper
|
2018-07-16 22:08:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntity.java b/src/main/java/net/minecraft/server/TileEntity.java
|
2018-08-26 20:11:49 +02:00
|
|
|
index c5212417c6..b3c5766a27 100644
|
2018-07-16 22:08:09 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntity.java
|
|
|
|
@@ -11,6 +11,7 @@ import org.bukkit.inventory.InventoryHolder; // CraftBukkit
|
2018-07-27 06:44:53 +02:00
|
|
|
public abstract class TileEntity implements KeyedObject { // Paper
|
2018-07-16 22:08:09 +02:00
|
|
|
|
|
|
|
public Timing tickTimer = MinecraftTimings.getTileEntityTimings(this); // Paper
|
|
|
|
+ boolean isLoadingStructure = false; // Paper
|
|
|
|
private static final Logger a = LogManager.getLogger();
|
|
|
|
private final TileEntityTypes<?> e; public TileEntityTypes getTileEntityType() { return e; } // Paper - OBFHELPER
|
|
|
|
protected World world;
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntitySign.java b/src/main/java/net/minecraft/server/TileEntitySign.java
|
2018-08-26 20:11:49 +02:00
|
|
|
index 00b6a3c16d..20dc3f272c 100644
|
2018-07-16 22:08:09 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntitySign.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntitySign.java
|
2018-08-26 20:11:49 +02:00
|
|
|
@@ -50,13 +50,14 @@ public class TileEntitySign extends TileEntity implements ICommandListener {
|
2018-07-16 22:08:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
- IChatBaseComponent ichatbasecomponent = IChatBaseComponent.ChatSerializer.a(s);
|
|
|
|
+ //IChatBaseComponent ichatbasecomponent = IChatBaseComponent.ChatSerializer.a(s); // Paper - move down - the old format might throw a json error
|
|
|
|
|
|
|
|
- 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
|
|
|
|
+ IChatBaseComponent ichatbasecomponent = IChatBaseComponent.ChatSerializer.a(s); // Paper - after old sign
|
|
|
|
|
|
|
|
if (this.world instanceof WorldServer) {
|
|
|
|
try {
|
|
|
|
--
|
2018-07-23 10:39:55 +02:00
|
|
|
2.18.0
|
2018-07-16 22:08:09 +02:00
|
|
|
|