fix: BlockLegacyDisplay rotates correctly

This commit is contained in:
LordMZTE 2022-12-12 19:31:01 +01:00
parent 9295a3a543
commit b8e0e5fca2
Signed by: LordMZTE
GPG Key ID: B64802DC33A64FF6
1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,9 @@ public class TileLegacyDisplay extends AENetworkTile {
public void readFromStreamTileLegacyDisplay(ByteBuf data) {
this.displayPowered = data.readBoolean();
this.worldObj.func_147451_t(this.xCoord, this.yCoord, this.zCoord);
this.worldObj.markBlockRangeForRenderUpdate(
this.xCoord, this.yCoord, this.zCoord, this.xCoord, this.yCoord, this.zCoord
);
}
@MENetworkEventSubscribe