mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-02-23 22:40:46 +00:00
Fixed issue: redstonePowered state not being serialized/deserialized
This commit is contained in:
parent
36a39b09e4
commit
2313cd3b44
@ -239,6 +239,7 @@ public class TileEntityReactorZirnox extends TileEntityMachineBase implements IC
|
||||
buf.writeInt(this.heat);
|
||||
buf.writeInt(this.pressure);
|
||||
buf.writeBoolean(this.isOn);
|
||||
buf.writeBoolean(this.redstonePowered);
|
||||
steam.serialize(buf);
|
||||
carbonDioxide.serialize(buf);
|
||||
water.serialize(buf);
|
||||
@ -250,6 +251,7 @@ public class TileEntityReactorZirnox extends TileEntityMachineBase implements IC
|
||||
this.heat = buf.readInt();
|
||||
this.pressure = buf.readInt();
|
||||
this.isOn = buf.readBoolean();
|
||||
this.redstonePowered = buf.readBoolean();
|
||||
steam.deserialize(buf);
|
||||
carbonDioxide.deserialize(buf);
|
||||
water.deserialize(buf);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user