2015-01-05 04:32:01 +01:00
|
|
|
From 5742a233d981dce73e19c330e130ad38bb589c4d Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
From: md_5 <md_5@live.com.au>
|
|
|
|
Date: Sun, 3 Feb 2013 09:20:19 +1100
|
|
|
|
Subject: [PATCH] Handle Null Tile Entities
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2015-01-05 04:32:01 +01:00
|
|
|
index 06bd661..b6a509c 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2014-12-11 05:21:51 +01:00
|
|
|
@@ -1318,6 +1318,13 @@ public abstract class World implements IBlockAccess {
|
2014-07-21 22:46:54 +02: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
|
|
|
|
|
2014-11-28 02:17:45 +01:00
|
|
|
if (!tileentity.x() && tileentity.t()) {
|
|
|
|
BlockPosition blockposition = tileentity.getPosition();
|
2014-07-21 22:46:54 +02:00
|
|
|
--
|
2014-11-28 02:17:45 +01:00
|
|
|
2.1.0
|
2014-07-21 22:46:54 +02:00
|
|
|
|