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

Encounter: change gained/lost lead message

This commit is contained in:
Jbleezy
2023-03-09 20:04:24 -08:00
parent c62f0ed967
commit 52d71ab0a6

View File

@ -3416,11 +3416,11 @@ increment_score(team)
{ {
if (player.team == 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("Gained the lead!", undefined, 30, delay);
} }
else else
{ {
player thread show_grief_hud_msg("Your team lost the lead!", undefined, 30, delay); player thread show_grief_hud_msg("Lost the lead!", undefined, 30, delay);
} }
} }
} }