1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 07:08:06 -05:00

Encounter: add exclamation point to certain HUD messages

This commit is contained in:
Jbleezy
2023-03-04 19:16:26 -08:00
parent fb58c0a53d
commit b63ce3b655
2 changed files with 4 additions and 4 deletions

View File

@ -146,11 +146,11 @@ round_end(winner)
{
if(player.team == team)
{
player thread scripts\zm\zgrief\zgrief_reimagined::show_grief_hud_msg( "You won the round" );
player thread scripts\zm\zgrief\zgrief_reimagined::show_grief_hud_msg( "You won the round!" );
}
else
{
player thread scripts\zm\zgrief\zgrief_reimagined::show_grief_hud_msg( "You lost the round" );
player thread scripts\zm\zgrief\zgrief_reimagined::show_grief_hud_msg( "You lost the round!" );
}
}
}

View File

@ -3414,11 +3414,11 @@ increment_score(team)
{
if (player.team == team)
{
player thread show_grief_hud_msg("Your team gained the lead", undefined, 30, delay);
player thread show_grief_hud_msg("Your team gained the lead!", undefined, 30, delay);
}
else
{
player thread show_grief_hud_msg("Your team lost the lead", undefined, 30, delay);
player thread show_grief_hud_msg("Your team lost the lead!", undefined, 30, delay);
}
}
}