1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 17:19:09 +00:00

(svn r12668) -Fix (12667): swapping of variables went wrong.

This commit is contained in:
rubidium
2008-04-12 12:19:53 +00:00
parent ac94b6384b
commit 8410bff078

View File

@@ -96,8 +96,8 @@ void Order::MakeDummy()
void Order::MakeConditional(VehicleOrderID order)
{
this->type = OT_CONDITIONAL;
this->flags = 0;
this->dest = order;
this->flags = order;
this->dest = 0;
}
void Order::SetRefit(CargoID cargo, byte subtype)