From 00bb6cc4fd01f5b6c8b1bcf2ef54d4a417e395e1 Mon Sep 17 00:00:00 2001 From: ctalneau Date: Sat, 28 Jun 2025 13:17:24 +0200 Subject: [PATCH] [FIX](Player info): Fixed player info sending where player info where not sent compared to previous versions --- src/Server/graphical_command/command_pnw.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Server/graphical_command/command_pnw.c b/src/Server/graphical_command/command_pnw.c index d04e10c..73d63b2 100644 --- a/src/Server/graphical_command/command_pnw.c +++ b/src/Server/graphical_command/command_pnw.c @@ -80,8 +80,11 @@ void send_all_player_info_to_one_client(game_t *game, zappy_client_t *clients, return; while (current) { if (current->player && current->type == AI && - current->is_fully_connected) + current->is_fully_connected){ send_pnw_command(game, clients, current, recipient); + send_pin_command(game, clients, current, recipient); + send_plv_command(game, clients, current, recipient); + } current = current->next; } }