This is a fork of Zandronum Beta for TSPG.
Revision | fbf70e808d6b8d67f9de21803a70c1a86cabbaae (tree) |
---|---|
Time | 2021-11-22 23:43:13 |
Author | Adam Kaminski <kaminskiadam9@gmai...> |
Commiter | Adam Kaminski |
Only append "Co-op" to the end of "Survival" on the countdown screen if survival hasn't been renamed to something else.
@@ -813,7 +813,7 @@ | ||
813 | 813 | text = invasion ? INVASION_GetCurrentWaveString( ) : GAMEMODE_GetCurrentName( ); |
814 | 814 | |
815 | 815 | // [AK] Append "co-op" to the end of "survival". |
816 | - if ( survival ) | |
816 | + if (( survival ) && ( text.CompareNoCase( "Survival" ) == 0 )) | |
817 | 817 | text += " Co-op"; |
818 | 818 | |
819 | 819 | HUD_DrawTextCleanCentered( BigFont, ulTitleColor, ulYPos, text ); |