mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
22 lines
736 B
Diff
22 lines
736 B
Diff
From 70464635b3bfc6a45e9362197c793c797c1f5cc4 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 d58733c..2d323a9 100644
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
|
@@ -1927,6 +1927,7 @@ public abstract class World implements IBlockAccess {
|
|
}
|
|
}
|
|
|
|
+ tileentity.a(this); // Spigot - No null worlds
|
|
this.b.add(tileentity);
|
|
} else {
|
|
this.a(tileentity);
|
|
--
|
|
2.1.0
|
|
|