From 2972f0ddc8e1e056f05fffbf8aed037658c8f58c Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Sun, 30 Oct 2016 01:41:03 +0200 Subject: [PATCH] Fixes #2528: World light level not being updated when light-level of cable bus changed after removing parts. --- src/main/java/appeng/tile/networking/TileCableBus.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/appeng/tile/networking/TileCableBus.java b/src/main/java/appeng/tile/networking/TileCableBus.java index 7d58b6b2..a90bfc2b 100644 --- a/src/main/java/appeng/tile/networking/TileCableBus.java +++ b/src/main/java/appeng/tile/networking/TileCableBus.java @@ -187,7 +187,7 @@ public class TileCableBus extends AEBaseTile implements AEMultiTile, ICustomColl if( newLV != this.oldLV ) { this.oldLV = newLV; - this.worldObj.getLight( this.pos ); + this.worldObj.checkLight( this.pos ); // worldObj.updateAllLightTypes( xCoord, yCoord, zCoord ); }