summaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2023-11-01 20:55:46 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2023-11-01 20:55:46 +0100
commit25e78dea3ab92d73354442d294ab3fac163c5c1e (patch)
tree1e7eceb482bc806094ede2f7f46a675ae09cb616 /src/game.c
parent9ae166e78fb751186de8986f042fb02d112d51f6 (diff)
disconnect visuals
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.c b/src/game.c
index 1e20cf9..b5c9fd8 100644
--- a/src/game.c
+++ b/src/game.c
@@ -163,11 +163,11 @@ void update_server(platform_window* window) {
if (player_has_old_session(new_id)) {
rejoin_player(new_id, msg->client);
- log_infox("Player connected to session / ip: %s id: %d", msg->client.ip, new_id);
+ log_infox("Player rejoined session / ip: %s id: %d", msg->client.ip, new_id);
}
else {
spawn_player(new_id, msg->client);
- log_infox("Player rejoined session / ip: %s id: %d", msg->client.ip, new_id);
+ log_infox("Player connected to session / ip: %s id: %d", msg->client.ip, new_id);
}
add_message_to_outgoing_queuex(create_protocol_get_id_down(new_id), msg->client);