(svn r2044) -Fix: fix that TriggerVehicle is called from the wrong user

This commit is contained in:
truelight 2005-03-24 14:43:40 +00:00
parent 9b1e6e6d3e
commit 1536c3ae5a
1 changed files with 3 additions and 2 deletions

View File

@ -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);