diff options
author | smatz <smatz@openttd.org> | 2008-01-10 21:54:45 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-01-10 21:54:45 +0000 |
commit | aa11580621b28d70abbede090fd4301b061a0f26 (patch) | |
tree | ae4a66570b64eb4c4c1670f2d615a193f29073f6 /src | |
parent | fb725dbb4c0e483b5fa30c8bcab49d53a3c21650 (diff) | |
download | openttd-aa11580621b28d70abbede090fd4301b061a0f26.tar.xz |
(svn r11809) -Fix [FS#1643]: set expenses type when selling all vehicles in depot
Diffstat (limited to 'src')
-rw-r--r-- | src/vehicle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp index 5f9ea2472..d86536131 100644 --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -1627,7 +1627,7 @@ CommandCost CmdDepotSellAllVehicles(TileIndex tile, uint32 flags, uint32 p1, uin uint16 wagon_list_length = 0; uint16 wagon_count = 0; - CommandCost cost; + CommandCost cost(EXPENSES_NEW_VEHICLES); uint i, sell_command, total_number_vehicles; VehicleType vehicle_type = (VehicleType)GB(p1, 0, 8); |