summaryrefslogtreecommitdiff
path: root/src/protocol.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-05-17 22:48:25 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-05-17 22:48:25 +0200
commit003c13a4ae07c3ec15a31df0f7f65e3d1ffe9ae0 (patch)
treea56b0e1d84d297c5869e8272fcac58c298a51ed5 /src/protocol.c
parentf06351b8a04d0a68628b05bed884832840998c6c (diff)
game fade in and out
Diffstat (limited to 'src/protocol.c')
-rw-r--r--src/protocol.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/protocol.c b/src/protocol.c
index cfcbd10..1070ff0 100644
--- a/src/protocol.c
+++ b/src/protocol.c
@@ -88,6 +88,7 @@ network_message create_protocol_round_data(zombie_round round)
protocol_round *buf = alloc_network_message(protocol_round);
buf->type = MESSAGE_ROUND_DATA;
buf->round = round;
+ buf->game_is_paused = game_is_paused;
return network_create_message((u8*)buf, sizeof(protocol_round), MAX_NETWORK_BUFFER_SIZE);
}