diff options
author | rubidium <rubidium@openttd.org> | 2010-08-18 00:03:08 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-08-18 00:03:08 +0000 |
commit | 9b8d7048da4c078a0b8d58daf38db04b5cfce114 (patch) | |
tree | 3965959589f2b742ff5627c0090f5328c68e5e4e /src/ai | |
parent | 4780cc50b200400bb1d05f22532041cd6edd3dc9 (diff) | |
download | openttd-9b8d7048da4c078a0b8d58daf38db04b5cfce114.tar.xz |
(svn r20533) -Codechange: shuffle a bit with the bits in the sell command
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/api/ai_vehicle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ai/api/ai_vehicle.cpp b/src/ai/api/ai_vehicle.cpp index f7af218f9..73cb04ac6 100644 --- a/src/ai/api/ai_vehicle.cpp +++ b/src/ai/api/ai_vehicle.cpp @@ -137,7 +137,7 @@ EnforcePrecondition(false, IsValidVehicle(vehicle_id)); const Vehicle *v = ::Vehicle::Get(vehicle_id); - return AIObject::DoCommand(0, vehicle_id, v->type == VEH_TRAIN ? 1 : 0, GetCmdSellVeh(v)); + return AIObject::DoCommand(0, vehicle_id | (v->type == VEH_TRAIN ? 1 : 0) << 16, 0, GetCmdSellVeh(v)); } /* static */ bool AIVehicle::_SellWagonInternal(VehicleID vehicle_id, int wagon, bool sell_attached_wagons) @@ -148,7 +148,7 @@ const Train *v = ::Train::Get(vehicle_id); while (wagon-- > 0) v = v->GetNextUnit(); - return AIObject::DoCommand(0, v->index, sell_attached_wagons ? 1 : 0, CMD_SELL_VEHICLE); + return AIObject::DoCommand(0, v->index | (sell_attached_wagons ? 1 : 0) << 16, 0, CMD_SELL_VEHICLE); } /* static */ bool AIVehicle::SellWagon(VehicleID vehicle_id, int wagon) |