Paper/Spigot-Server-Patches/0024-Fix-Null-Tile-Entity-Worlds.patch
Zach Brown 7b0c576798 Restructure PaperSpigot as a new set of modules
Allows us much greater control over the Spigot portion of the code
and makes us more "proper"
Credit to @Dmck2b for originally passing the idea along a while back
2014-07-21 15:46:54 -05:00

22 lines
758 B
Diff

From 9b8a6899e726577823fcca2fd898871af9a39a9e 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 9770cf0..57dd556 100644
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
@@ -2015,6 +2015,7 @@ public abstract class World implements IBlockAccess {
}
}
+ tileentity.a(this); // PaperSpigot - No null worlds
this.a.add(tileentity);
} else {
this.tileEntityList.add(tileentity);
--
1.9.1