(svn r2042) -Fix: forgot to remove a printf ;)

This commit is contained in:
truelight
2005-03-24 14:31:27 +00:00
parent 88ef277dc3
commit fbb11ea366
5 changed files with 7 additions and 7 deletions

View File

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