2015-03-08 12:04:41 +01:00
|
|
|
From d9513bec77e7242331a32c4e6170e2c4d65fbc3f Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02:00
|
|
|
From: Thinkofdeath <thethinkofdeath@gmail.com>
|
|
|
|
Date: Wed, 5 Mar 2014 20:27:27 +0000
|
|
|
|
Subject: [PATCH] Prevent hoppers from loading chunks
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntityHopper.java b/src/main/java/net/minecraft/server/TileEntityHopper.java
|
2015-02-28 12:36:22 +01:00
|
|
|
index b3bf687..4f50a47 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntityHopper.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntityHopper.java
|
2015-02-28 12:36:22 +01:00
|
|
|
@@ -556,6 +556,7 @@ public class TileEntityHopper extends TileEntityContainer implements IHopper, IU
|
2014-07-21 22:46:54 +02:00
|
|
|
int j = MathHelper.floor(d1);
|
|
|
|
int k = MathHelper.floor(d2);
|
2014-11-28 02:17:45 +01:00
|
|
|
BlockPosition blockposition = new BlockPosition(i, j, k);
|
|
|
|
+ if ( !world.isLoaded( blockposition ) ) return null; // Spigot
|
2015-02-28 12:36:22 +01:00
|
|
|
Block block = world.getType(blockposition).getBlock();
|
2014-07-21 22:46:54 +02:00
|
|
|
|
2015-02-28 12:36:22 +01:00
|
|
|
if (block.isTileEntity()) {
|
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
|
|
|
|