# HG changeset patch # User Adam Kaminski # Date 1637592193 18000 # Mon Nov 22 09:43:13 2021 -0500 # Node ID cc3e661853a93051f3a65c4db74533c98d837aa8 # Parent a944a53944a8847d860297992c9edd909092c881 Only append "Co-op" to the end of "Survival" on the countdown screen if survival hasn't been renamed to something else. diff -r a944a53944a8 -r cc3e661853a9 src/g_shared/st_hud.cpp --- a/src/g_shared/st_hud.cpp Sun Nov 21 14:41:20 2021 -0500 +++ b/src/g_shared/st_hud.cpp Mon Nov 22 09:43:13 2021 -0500 @@ -813,7 +813,7 @@ text = invasion ? INVASION_GetCurrentWaveString( ) : GAMEMODE_GetCurrentName( ); // [AK] Append "co-op" to the end of "survival". - if ( survival ) + if (( survival ) && ( text.CompareNoCase( "Survival" ) == 0 )) text += " Co-op"; HUD_DrawTextCleanCentered( BigFont, ulTitleColor, ulYPos, text );