Paper/CraftBukkit-Patches/0140-Fix-Null-Tile-Entity-Worlds.patch
Zach Brown 1c49ff69f4 Update Spigot's Patches round 2?
The hell happened here.
:
Fix Build 2339ac14a8e
Regen the patches 89d3fcbdfaf

This new system breaks a lot :(
2014-11-28 18:06:26 -06:00

22 lines
736 B
Diff

From 7e342d18c29d913aab4965fddb7ad0a556b65e56 Mon Sep 17 00:00:00 2001
From: "Evan A. Haskell" <eah2119@gmail.com>
Date: Thu, 26 Jun 2014 18:37:29 -0400
Subject: [PATCH] Fix Null Tile Entity Worlds
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
index ffcef45..2f79c83 100644
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
@@ -1859,6 +1859,7 @@ public abstract class World implements IBlockAccess {
}
}
+ tileentity.a(this); // Spigot - No null worlds
this.a.add(tileentity);
} else {
this.a(tileentity);
--
2.1.0