summaryrefslogtreecommitdiff
path: root/aircraft_cmd.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-06-04 17:38:48 +0000
committerpeter1138 <peter1138@openttd.org>2006-06-04 17:38:48 +0000
commitf00c3e7e25a5a31b31eeaf369feaa789956306d8 (patch)
tree21e6459184d1403a93b6f2efa6de0a74283360cb /aircraft_cmd.c
parentfa740023567157cf18d4dd06880307e7b08b7c77 (diff)
downloadopenttd-f00c3e7e25a5a31b31eeaf369feaa789956306d8.tar.xz
(svn r5103) - Add cargo subtype parameter to refit commands (mart3p)
Diffstat (limited to 'aircraft_cmd.c')
-rw-r--r--aircraft_cmd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/aircraft_cmd.c b/aircraft_cmd.c
index 83cc43287..dc736e491 100644
--- a/aircraft_cmd.c
+++ b/aircraft_cmd.c
@@ -483,6 +483,7 @@ int32 CmdSendAircraftToHangar(TileIndex tile, uint32 flags, uint32 p1, uint32 p2
* @param p1 vehicle ID of the aircraft to refit
* @param p2 various bitstuffed elements
* - p2 = (bit 0-7) - the new cargo type to refit to
+ * - p2 = (bit 8-15) - the new cargo subtype to refit to
*/
int32 CmdRefitAircraft(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
{
@@ -490,6 +491,7 @@ int32 CmdRefitAircraft(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
int pass, mail;
int32 cost;
CargoID new_cid = GB(p2, 0, 8);
+ byte new_subtype = GB(p2, 8, 8);
const AircraftVehicleInfo *avi;
if (!IsVehicleIndex(p1)) return CMD_ERROR;
@@ -538,6 +540,7 @@ int32 CmdRefitAircraft(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
u->cargo_cap = mail;
v->cargo_count = u->cargo_count = 0;
v->cargo_type = new_cid;
+ v->cargo_subtype = new_subtype;
InvalidateWindow(WC_VEHICLE_DETAILS, v->index);
InvalidateWindow(WC_VEHICLE_DEPOT, v->tile);
RebuildVehicleLists();