Merge pull request #10561 from obrakmann/fix10560_fix-1st-spy-hideout-sov03

Fix bogus conditional in soviet03 lua script
This commit is contained in:
Matthias Mailänder
2016-01-21 21:43:31 +01:00

View File

@@ -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