spigot/CraftBukkit-Patches/0138-Fix-Null-Tile-Entity-Worlds.patch

22 lines
736 B
Diff
Raw Normal View History

2014-12-21 09:01:55 +11:00
From 18569ffbd201d1674d42f49ec4f405c42b4bfc7c Mon Sep 17 00:00:00 2001
2014-07-22 18:56:56 +10:00
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
2014-12-10 19:55:03 +00:00
index f75856e..264f369 100644
2014-07-22 18:56:56 +10:00
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
2014-12-10 19:55:03 +00:00
@@ -1874,6 +1874,7 @@ public abstract class World implements IBlockAccess {
2014-07-22 18:56:56 +10:00
}
}
+ tileentity.a(this); // Spigot - No null worlds
this.a.add(tileentity);
} else {
this.a(tileentity);
2014-07-22 18:56:56 +10:00
--
2.1.0
2014-07-22 18:56:56 +10:00