Fix timed bombs not showing a time.
This commit is contained in:
BallOfEnergy 2025-01-08 20:48:53 -06:00
parent 6d06227922
commit 19af9d769d

View File

@ -32,7 +32,7 @@ public class TileEntityCharge extends TileEntityLoadedBase {
@Override @Override
public void serialize(ByteBuf buf) { public void serialize(ByteBuf buf) {
buf.writeLong(this.timer); buf.writeInt(this.timer);
buf.writeBoolean(this.started); buf.writeBoolean(this.started);
} }