From 26ad0183482b347ef34260a34949d7276f235f38 Mon Sep 17 00:00:00 2001 From: Oliver Brakmann Date: Thu, 21 Jan 2016 21:28:05 +0100 Subject: [PATCH] Fix bogus conditional in soviet03 lua script --- mods/ra/maps/soviet-03/soviet03.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ra/maps/soviet-03/soviet03.lua b/mods/ra/maps/soviet-03/soviet03.lua index 8f7d5c243d..d0c072d610 100644 --- a/mods/ra/maps/soviet-03/soviet03.lua +++ b/mods/ra/maps/soviet-03/soviet03.lua @@ -150,7 +150,7 @@ Trigger.OnEnteredFootprint(SpyHideout1Trigger, function(a, id) spyHideout1Trigger = true Trigger.RemoveFootprintTrigger(id) Actor.Create("camera", true, { Owner = player, Location = SpyHideout1.Location }) - if not TheSpy.IsDead and SpyHideout1.IsDead then + if not TheSpy.IsDead and not SpyHideout1.IsDead then TheSpy.EnterTransport(SpyHideout1) end end