Commit cac4349b authored by Chunchi Che's avatar Chunchi Che

fix updateCard.ts

parent 2880f3d3
Pipeline #23471 failed with stages
in 1 minute and 48 seconds
...@@ -16,6 +16,8 @@ export default (data: Uint8Array) => { ...@@ -16,6 +16,8 @@ export default (data: Uint8Array) => {
const player = reader.inner.readUint8(); const player = reader.inner.readUint8();
const zone = numberToCardZone(reader.inner.readUint8()); const zone = numberToCardZone(reader.inner.readUint8());
const sequence = reader.inner.readUint8(); const sequence = reader.inner.readUint8();
// pending
reader.inner.readUint32();
const msg = new MsgUpdateData({ player, zone, actions: [] }); const msg = new MsgUpdateData({ player, zone, actions: [] });
const action = readUpdateAction(reader); const action = readUpdateAction(reader);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment