2015-05-25 14:05:40 +02:00
|
|
|
From 25cfc35dd3feae24765c75a864ee7492535ca09a 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-05-25 14:05:40 +02:00
|
|
|
index 6785b71..1553656 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-03-08 13:42:50 +01:00
|
|
|
@@ -549,6 +549,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
|
|
|
--
|
2015-05-09 22:23:26 +02:00
|
|
|
2.1.4
|
2014-07-21 22:46:54 +02:00
|
|
|
|