mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r2044) -Fix: fix that TriggerVehicle is called from the wrong user
This commit is contained in:
parent
9b1e6e6d3e
commit
1536c3ae5a
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user