mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-09-18 21:33:01 +00:00
21 lines
817 B
Diff
21 lines
817 B
Diff
From 53c6890bdcb94253f4a0df0eaf88bb13bb947b33 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 f835b1b01..7013dfc29 100644
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
|
@@ -1958,6 +1958,7 @@ public abstract class World implements IBlockAccess {
|
|
}
|
|
}
|
|
|
|
+ tileentity.a(this); // Spigot - No null worlds
|
|
this.b.add(tileentity);
|
|
} else {
|
|
this.getChunkAtWorldCoords(blockposition).a(blockposition, tileentity);
|
|
--
|
|
2.11.0
|
|
|