diff --git a/src/pc/network/packets/packet_player.c b/src/pc/network/packets/packet_player.c index a453300fc..d8f55e321 100644 --- a/src/pc/network/packets/packet_player.c +++ b/src/pc/network/packets/packet_player.c @@ -24,6 +24,7 @@ void network_send_player(void) { packet_write(&p, &gMarioStates[0].actionTimer, sizeof(u16)); packet_write(&p, &gMarioStates[0].actionArg, sizeof(u32)); packet_write(&p, &gMarioStates[0].currentRoom, sizeof(s16)); + packet_write(&p, &gMarioStates[0].squishTimer, sizeof(u8)); packet_write(&p, &heldSyncID, sizeof(u32)); packet_write(&p, &heldBySyncID, sizeof(u32)); @@ -47,6 +48,7 @@ void network_receive_player(struct Packet* p) { packet_read(p, &gMarioStates[1].actionTimer, sizeof(u16)); packet_read(p, &gMarioStates[1].actionArg, sizeof(u32)); packet_read(p, &gMarioStates[1].currentRoom, sizeof(s16)); + packet_read(p, &gMarioStates[1].squishTimer, sizeof(u8)); packet_read(p, &heldSyncID, sizeof(u32)); packet_read(p, &heldBySyncID, sizeof(u32));