Changeset - r12477:069be9651c2d
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-07-23 08:47:14
rubidium@openttd.org
(svn r16924) -Fix (r16922): selling or sending to depot, what's the difference? :)
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/vehicle_cmd.cpp
Show inline comments
 
@@ -172,7 +172,7 @@ CommandCost CmdDepotSellAllVehicles(Tile
 

	
 
	CommandCost cost(EXPENSES_NEW_VEHICLES);
 
	VehicleType vehicle_type = (VehicleType)GB(p1, 0, 8);
 
	uint sell_command = GetCmdSendToDepot(vehicle_type);;
 
	uint sell_command = GetCmdSellVeh(vehicle_type);;
 

	
 
	/* Get the list of vehicles in the depot */
 
	BuildDepotVehicleList(vehicle_type, tile, &list, &list);
0 comments (0 inline, 0 general)