Skip to content

Commit

Permalink
Fix (daemon): Fix daemon crashing for CS2 when first player connects
Browse files Browse the repository at this point in the history
  • Loading branch information
leojonathanoh committed Feb 2, 2024
1 parent bbe1f35 commit 00ce45b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/scripts/hlstats.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1182,6 +1182,14 @@ sub getPlayerInfo
$userid = -3;
}
}
} else {
if ($g_servers{$s_addr}->{play_game} == CS2()) {
# leo - Workaround for bad logging from CS2 where first non-bot player may be assigned userid of `0`. By setting userid > 0, the player object will be created at the end of the function
# E.g. L 02/01/2024 - 21:02:01.253 - "X<0><[U:Y]><>" entered the game
if ($userid == 0) {
$userid = 0.1;
}
}
}

if ($g_mode eq "NameTrack") {
Expand Down

0 comments on commit 00ce45b

Please sign in to comment.