Add IsDead check to fix crash in Sarin Gas 1

This commit is contained in:
Smittytron
2019-01-07 18:26:00 -06:00
committed by Paul Chote
parent 9c7ba51e29
commit da40f45ece

View File

@@ -118,7 +118,9 @@ MissionStart = function()
end end
SendPatrol = function(mammoth) SendPatrol = function(mammoth)
mammoth.Patrol(MammothPath, true, 20) if not mammoth.IsDead then
mammoth.Patrol(MammothPath, true, 20)
end
end end
MoveTruckNorth = function(truck) MoveTruckNorth = function(truck)