2013-05-14 04:08:11 +02:00
|
|
|
From 9318443175872f9a1c21c351148b052778625c54 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.
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2013-05-14 04:08:11 +02:00
|
|
|
index feb657b..c547ecc 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-04-13 09:06:23 +02:00
|
|
|
@@ -1333,6 +1333,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
|
2013-03-25 08:57:00 +01:00
|
|
|
// CraftBukkit start - Don't tick entities in chunks queued for unload
|
2013-02-02 23:21:35 +01:00
|
|
|
ChunkProviderServer chunkProviderServer = ((WorldServer) this).chunkProviderServer;
|
|
|
|
if (chunkProviderServer.unloadQueue.contains(tileentity.x >> 4, tileentity.z >> 4)) {
|
|
|
|
--
|
2013-04-10 04:36:11 +02:00
|
|
|
1.8.2.1
|
2013-02-02 23:21:35 +01:00
|
|
|
|