Skip to content

Commit

Permalink
Mark TE chunks as dirty on block updates (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenraven authored Jun 23, 2022
1 parent 8e6b826 commit a803e9f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/appeng/tile/AEBaseTile.java
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ public void markForUpdate()
{
AELog.blockUpdate( this.xCoord, this.yCoord, this.zCoord, this );
this.worldObj.markBlockForUpdate( this.xCoord, this.yCoord, this.zCoord );
this.worldObj.markTileEntityChunkModified( this.xCoord, this.yCoord, this.zCoord, this );
}
}
}
Expand Down

0 comments on commit a803e9f

Please sign in to comment.