summaryrefslogtreecommitdiff
path: root/economy.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-03-24 14:43:40 +0000
committertruelight <truelight@openttd.org>2005-03-24 14:43:40 +0000
commit1536c3ae5af34cda0a0fc17b5181f498d2340066 (patch)
tree5312255691dcadede432d33c76158373fcd8e571 /economy.c
parent9b1e6e6d3e228a5e0d3cb5e72f462ecc163a03be (diff)
downloadopenttd-1536c3ae5af34cda0a0fc17b5181f498d2340066.tar.xz
(svn r2044) -Fix: fix that TriggerVehicle is called from the wrong user
Diffstat (limited to 'economy.c')
-rw-r--r--economy.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/economy.c b/economy.c
index 283bf3386..2d0f17b7b 100644
--- a/economy.c
+++ b/economy.c
@@ -1346,8 +1346,6 @@ int LoadUnloadVehicle(Vehicle *v)
assert(v->current_order.type == OT_LOADING);
v->cur_speed = 0;
- old_player = _current_player;
- _current_player = v->owner;
st = GetStation(last_visited = v->last_station_visited);
@@ -1455,6 +1453,9 @@ int LoadUnloadVehicle(Vehicle *v)
TriggerVehicle(v, VEHICLE_TRIGGER_EMPTY);
}
+ old_player = _current_player;
+ _current_player = v->owner;
+
if (result != 0) {
InvalidateWindow(WC_VEHICLE_DETAILS, v->index);