2013-02-26 18:21:40 +01:00
|
|
|
From 5f8e123bf8262bf21389a5cac3396188c7097463 Mon Sep 17 00:00:00 2001
|
2013-02-02 23:21:35 +01:00
|
|
|
From: md_5 <md_5@live.com.au>
|
|
|
|
Date: Sun, 3 Feb 2013 09:20:19 +1100
|
|
|
|
Subject: [PATCH] Detect, remove and warn about null tile entities.
|
|
|
|
|
|
|
|
---
|
|
|
|
src/main/java/net/minecraft/server/World.java | 7 +++++++
|
|
|
|
1 file changed, 7 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2013-02-26 18:21:40 +01:00
|
|
|
index 2fe9b1d..4fc1233 100644
|
2013-02-02 23:21:35 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2013-02-26 18:21:40 +01:00
|
|
|
@@ -1303,6 +1303,13 @@ public abstract class World implements IBlockAccess {
|
2013-02-02 23:21:35 +01:00
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
TileEntity tileentity = (TileEntity) iterator.next();
|
|
|
|
+ // Spigot start
|
|
|
|
+ if (tileentity == null) {
|
|
|
|
+ getServer().getLogger().severe("Spigot has detected a null entity and has removed it, preventing a crash");
|
|
|
|
+ iterator.remove();
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ // Spigot end
|
|
|
|
// CraftBukkit start - don't tick entities in chunks queued for unload
|
|
|
|
ChunkProviderServer chunkProviderServer = ((WorldServer) this).chunkProviderServer;
|
|
|
|
if (chunkProviderServer.unloadQueue.contains(tileentity.x >> 4, tileentity.z >> 4)) {
|
|
|
|
--
|
2013-02-26 18:21:40 +01:00
|
|
|
1.8.1.1
|
2013-02-02 23:21:35 +01:00
|
|
|
|