We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0beb5 commit bb8c165Copy full SHA for bb8c165
Data/Base.rte/Scenes/Objects/Bunkers/BunkerSystems/Automovers/Controller/Controller.lua
@@ -187,7 +187,7 @@ function Update(self)
187
if self.actorMovementUpdateTimer:IsPastSimTimeLimit() then
188
for actorUniqueID, actorData in pairs(self.affectedActors) do
189
local actor = actorData.actor;
190
- if not MovableMan:ValidMO(actor) or not self.combinedAutomoverArea:IsInside(actor.Pos) then
+ if not MovableMan:ValidMO(actor) or actor.Health <= 0 or not self.combinedAutomoverArea:IsInside(actor.Pos) then
191
self:removeActorFromAutomoverTable(actor, actorUniqueID);
192
else
193
if actor:NumberValueExists("Automover_LeaveAutomoverNetwork") then
0 commit comments