Skip to content

Commit

Permalink
fix string key
Browse files Browse the repository at this point in the history
  • Loading branch information
BenLubar committed Oct 27, 2023
1 parent 1de244f commit caaaab1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/game/server/swarm/asw_marine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1229,16 +1229,16 @@ int CASW_Marine::OnTakeDamage( const CTakeDamageInfo &info )
switch ( GetMarineProfile()->m_Pronouns )
{
case ASW_PRONOUNS_HE:
UTIL_ClientPrintAll( ASW_HUD_PRINTTALKANDCONSOLE, "#asw_suicide_male_revivable", szName );
UTIL_ClientPrintAll( ASW_HUD_PRINTTALKANDCONSOLE, "#rd_suicide_male_revivable", szName );
break;
case ASW_PRONOUNS_SHE:
UTIL_ClientPrintAll( ASW_HUD_PRINTTALKANDCONSOLE, "#asw_suicide_female_revivable", szName );
UTIL_ClientPrintAll( ASW_HUD_PRINTTALKANDCONSOLE, "#rd_suicide_female_revivable", szName );
break;
case ASW_PRONOUNS_IT_ROBOT:
UTIL_ClientPrintAll( ASW_HUD_PRINTTALKANDCONSOLE, "#asw_suicide_robot_revivable", szName );
UTIL_ClientPrintAll( ASW_HUD_PRINTTALKANDCONSOLE, "#rd_suicide_robot_revivable", szName );
break;
case ASW_PRONOUNS_IT_ANIMAL:
UTIL_ClientPrintAll( ASW_HUD_PRINTTALKANDCONSOLE, "#asw_suicide_animal_revivable", szName );
UTIL_ClientPrintAll( ASW_HUD_PRINTTALKANDCONSOLE, "#rd_suicide_animal_revivable", szName );
break;
}
}
Expand Down

0 comments on commit caaaab1

Please sign in to comment.