2018-01-11 06:31:19 +01:00
|
|
|
From 35d6721b68c1c5c2dafcfb575dc1cd4d4045764b Mon Sep 17 00:00:00 2001
|
2016-06-23 04:56:57 +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-01-11 06:31:19 +01:00
|
|
|
index 9f314204..23da9467 100644
|
2016-06-23 04:56:57 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/DefinedStructure.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/DefinedStructure.java
|
|
|
|
@@ -203,9 +203,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());
|
|
|
|
+ tileentity.isLoadingStructure = true; // Paper
|
2017-08-03 16:36:06 +02:00
|
|
|
tileentity.load(definedstructure_blockinfo1.c);
|
2016-06-23 04:56:57 +02:00
|
|
|
tileentity.a(definedstructureinfo.b());
|
|
|
|
tileentity.a(definedstructureinfo.c());
|
|
|
|
+ tileentity.isLoadingStructure = false; // Paper
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-17 03:23:38 +01:00
|
|
|
@@ -600,7 +602,7 @@ public class DefinedStructure {
|
2016-06-23 04:56:57 +02:00
|
|
|
public IBlockData a(int i) {
|
|
|
|
IBlockData iblockdata = (IBlockData) this.b.fromId(i);
|
|
|
|
|
|
|
|
- return iblockdata == null ? DefinedStructure.a.a : iblockdata;
|
|
|
|
+ return iblockdata == null ? a : iblockdata; // Paper - decompile error - Blocks.AIR.getBlockData()
|
|
|
|
}
|
|
|
|
|
|
|
|
public Iterator<IBlockData> iterator() {
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntity.java b/src/main/java/net/minecraft/server/TileEntity.java
|
2018-01-11 06:31:19 +01:00
|
|
|
index 393c9089..237f7e6f 100644
|
2016-06-23 04:56:57 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntity.java
|
2016-11-17 03:23:38 +01:00
|
|
|
@@ -11,6 +11,7 @@ import org.bukkit.inventory.InventoryHolder; // CraftBukkit
|
2016-06-23 04:56:57 +02:00
|
|
|
public abstract class TileEntity {
|
|
|
|
|
|
|
|
public Timing tickTimer = MinecraftTimings.getTileEntityTimings(this); // Paper
|
|
|
|
+ boolean isLoadingStructure = false; // Paper
|
|
|
|
private static final Logger a = LogManager.getLogger();
|
2016-11-17 03:23:38 +01:00
|
|
|
private static final RegistryMaterials<MinecraftKey, Class<? extends TileEntity>> f = new RegistryMaterials();
|
|
|
|
protected World world;
|
2016-06-23 04:56:57 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntitySign.java b/src/main/java/net/minecraft/server/TileEntitySign.java
|
2018-01-11 06:31:19 +01:00
|
|
|
index 77a7b445..54b719d9 100644
|
2016-06-23 04:56:57 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntitySign.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntitySign.java
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -77,13 +77,14 @@ public class TileEntitySign extends TileEntity {
|
2016-06-23 04:56:57 +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
|
|
|
|
|
|
|
|
try {
|
|
|
|
this.lines[i] = ChatComponentUtils.filterForDisplay(icommandlistener, ichatbasecomponent, (Entity) null);
|
|
|
|
--
|
2018-01-11 06:31:19 +01:00
|
|
|
2.14.3
|
2016-06-23 04:56:57 +02:00
|
|
|
|