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:
@ -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!" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user