summaryrefslogtreecommitdiff
path: root/economy.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-03-24 14:31:27 +0000
committertruelight <truelight@openttd.org>2005-03-24 14:31:27 +0000
commite51659da601c7ce534a0815ccc156e35395e5a12 (patch)
tree86e29898e2ae33221aaf5ec5eacca8b717db8e86 /economy.c
parent49d69f6fa3882d4af9384bda65eb8c5f11ce28dd (diff)
downloadopenttd-e51659da601c7ce534a0815ccc156e35395e5a12.tar.xz
(svn r2042) -Fix: forgot to remove a printf ;)
Diffstat (limited to 'economy.c')
-rw-r--r--economy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/economy.c b/economy.c
index 283bf3386..fa15b33f8 100644
--- a/economy.c
+++ b/economy.c
@@ -1346,9 +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);
for (; v != NULL; v = v->next) {
@@ -1455,6 +1452,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);