(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
1 changed files with 2 additions and 2 deletions

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)