Skip to content

Commit

Permalink
Fix shuttle disabling on ftl (#25859)
Browse files Browse the repository at this point in the history
Branch moment.

(cherry picked from commit 574c625d124ba086f03d327be28d961c680dbd73)
  • Loading branch information
metalgearsloth authored and DebugOk committed Mar 8, 2024
1 parent c30ff6e commit 5de30d1
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,10 @@ private void UpdateFTLArriving(Entity<FTLComponent, ShuttleComponent> entity)
{
Disable(uid, component: body);
}

Enable(uid, component: body, shuttle: entity.Comp2);
else
{
Enable(uid, component: body, shuttle: entity.Comp2);
}
}

_thruster.DisableLinearThrusters(entity.Comp2);
Expand Down

0 comments on commit 5de30d1

Please sign in to comment.