diff options
author | bjarni <bjarni@openttd.org> | 2005-10-31 12:59:47 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2005-10-31 12:59:47 +0000 |
commit | 682b9ee8e4e594b4737528ff769bbe526aee2f8e (patch) | |
tree | 27e67e4ab96bd9ad2c2eea8092cd15b2d09de93c /ship_cmd.c | |
parent | 95d1c43565402743d5cf6f215886ba028a54bb93 (diff) | |
download | openttd-682b9ee8e4e594b4737528ff769bbe526aee2f8e.tar.xz |
(svn r3111) -Fix: [autoreplace] [ 1341783 ] Assertion failure in vehicle.c line 378
running MaybeReplaceVehicle() is now delayed until after the loop in CallVehicleTicks()
This avoids selling the vehicle the loop currently works with (and continues to work with afterwards)
Diffstat (limited to 'ship_cmd.c')
-rw-r--r-- | ship_cmd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ship_cmd.c b/ship_cmd.c index 30f68c014..e0e099009 100644 --- a/ship_cmd.c +++ b/ship_cmd.c @@ -414,8 +414,6 @@ static void ShipEnterDepot(Vehicle *v) InvalidateWindow(WC_VEHICLE_DETAILS, v->index); - v = MaybeReplaceVehicle(v); - TriggerVehicle(v, VEHICLE_TRIGGER_DEPOT); if (v->current_order.type == OT_GOTO_DEPOT) { |