From 30ea1e23b47a8757463670bc35968b071c52efac Mon Sep 17 00:00:00 2001 From: Smittytron Date: Sun, 31 Jan 2021 20:22:49 -0600 Subject: [PATCH] Delay SendReinforcements() to split notifications --- mods/ra/maps/allies-05a/allies05a.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mods/ra/maps/allies-05a/allies05a.lua b/mods/ra/maps/allies-05a/allies05a.lua index d252d92c07..53f338d583 100644 --- a/mods/ra/maps/allies-05a/allies05a.lua +++ b/mods/ra/maps/allies-05a/allies05a.lua @@ -358,7 +358,9 @@ InitTriggers = function() Media.PlaySpeechNotification(greece, "TanyaRescued") greece.MarkCompletedObjective(mainObj) - SendReinforcements() + Trigger.AfterDelay(DateTime.Seconds(2), function() + SendReinforcements() + end) if PrisonCamera and PrisonCamera.IsInWorld then PrisonCamera.Destroy()