From 973997e896aeaaf36780abc3c51b1c115cec0535 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 7 Apr 2008 20:03:46 +0000 Subject: (svn r12617) -Codechange: add type safety to the Order's load and unload types. --- src/industry_cmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/industry_cmd.cpp') diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 510aa2219..aaf06cebb 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1968,13 +1968,13 @@ int WhoCanServiceIndustry(Industry* ind) */ const Order *o; FOR_VEHICLE_ORDERS(v, o) { - if (o->IsType(OT_GOTO_STATION) && !HasBit(o->GetUnloadType(), OF_TRANSFER)) { + if (o->IsType(OT_GOTO_STATION) && !(o->GetUnloadType() & OUFB_TRANSFER)) { /* Vehicle visits a station to load or unload */ Station *st = GetStation(o->GetDestination()); if (!st->IsValid()) continue; /* Same cargo produced by industry is dropped here => not serviced by vehicle v */ - if (HasBit(o->GetUnloadType(), OF_UNLOAD) && !c_accepts) break; + if ((o->GetUnloadType() & OUFB_UNLOAD) && !c_accepts) break; if (stations.find(st) != stations.end()) { if (v->owner == _local_player) return 2; // Player services industry -- cgit v1.2.3-70-g09d2