Fixes #2528: World light level not being updated when light-level of cable bus changed after removing parts.

This commit is contained in:
Sebastian Hartte 2016-10-30 01:41:03 +02:00
parent bd97a6edd5
commit 2972f0ddc8
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}