Fix null tile entity worlds crashing the server

This commit is contained in:
Evan A. Haskell
2014-07-08 18:26:23 -05:00
parent 7ad4a59952
commit 9bb4978a15
24 changed files with 19 additions and 40 deletions

View File

@@ -0,0 +1,19 @@
From 0000000000000000000000000000000000000000 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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
@@ -0,0 +0,0 @@ public abstract class World implements IBlockAccess {
}
}
+ tileentity.a(this); // PaperSpigot - No null worlds
this.a.add(tileentity);
} else {
this.tileEntityList.add(tileentity);
--