# HG changeset patch # User Adam Kaminski # Date 1642364832 18000 # Sun Jan 16 15:27:12 2022 -0500 # Node ID 0d1ddc1e93a5a1cd0c2c004f46b063747ca0b168 # Parent 6e1381af7dc7b49c94a3c0d9b12bdb57917bd0f4 Fixed: There was no separator between "free spectate mode" and "players left" in the bottom HUD string. diff -r 6e1381af7dc7 -r 0d1ddc1e93a5 src/g_shared/st_hud.cpp --- a/src/g_shared/st_hud.cpp Thu Jan 13 19:49:21 2022 -0500 +++ b/src/g_shared/st_hud.cpp Sun Jan 16 15:27:12 2022 -0500 @@ -531,7 +531,7 @@ if ( playersLeftString.Len( ) > 0 ) { - if ( ulDisplayPlayer != static_cast( consoleplayer )) + if (( CLIENTDEMO_IsInFreeSpectateMode( )) || ( ulDisplayPlayer != static_cast( consoleplayer ))) bottomString += " - "; bottomString += playersLeftString;