diff --git a/scripts/zm/replaced/_zm_game_module.gsc b/scripts/zm/replaced/_zm_game_module.gsc index ff8f7d37..9faa686a 100644 --- a/scripts/zm/replaced/_zm_game_module.gsc +++ b/scripts/zm/replaced/_zm_game_module.gsc @@ -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!" ); } } } diff --git a/scripts/zm/zgrief/zgrief_reimagined.gsc b/scripts/zm/zgrief/zgrief_reimagined.gsc index 0d6d5da1..d3983e9f 100644 --- a/scripts/zm/zgrief/zgrief_reimagined.gsc +++ b/scripts/zm/zgrief/zgrief_reimagined.gsc @@ -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); } } }