mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 19:52:55 +01:00
Prevent hoppers from loading chunks
This commit is contained in:
parent
4bd27f7d0f
commit
22e3ef2350
1 changed files with 21 additions and 0 deletions
|
@ -0,0 +1,21 @@
|
|||
From bc66ed9af64c942a9b4b0f24a498e8840313bbf5 Mon Sep 17 00:00:00 2001
|
||||
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
|
||||
index a68b748..fc0d2b3 100644
|
||||
--- a/src/main/java/net/minecraft/server/TileEntityHopper.java
|
||||
+++ b/src/main/java/net/minecraft/server/TileEntityHopper.java
|
||||
@@ -442,6 +442,7 @@ public class TileEntityHopper extends TileEntity implements IHopper {
|
||||
int i = MathHelper.floor(d0);
|
||||
int j = MathHelper.floor(d1);
|
||||
int k = MathHelper.floor(d2);
|
||||
+ if ( !world.isLoaded( i, j, k ) ) return null; // Spigot
|
||||
TileEntity tileentity = world.getTileEntity(i, j, k);
|
||||
|
||||
if (tileentity != null && tileentity instanceof IInventory) {
|
||||
--
|
||||
1.8.5.2.msysgit.0
|
||||
|
Loading…
Reference in a new issue