From 52d71ab0a69e8826af756cac9cc13868eb0e3362 Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Thu, 9 Mar 2023 20:04:24 -0800 Subject: [PATCH] Encounter: change gained/lost lead message --- scripts/zm/zgrief/zgrief_reimagined.gsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/zm/zgrief/zgrief_reimagined.gsc b/scripts/zm/zgrief/zgrief_reimagined.gsc index 5d9ba6b1..31f4c1c8 100644 --- a/scripts/zm/zgrief/zgrief_reimagined.gsc +++ b/scripts/zm/zgrief/zgrief_reimagined.gsc @@ -3416,11 +3416,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("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("Lost the lead!", undefined, 30, delay); } } }