summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-03-18 22:32:05 +0000
committerpeter1138 <peter1138@openttd.org>2007-03-18 22:32:05 +0000
commit3d3d8d7c47f3fb98abeefe943f7c94f4485f3dec (patch)
tree7e2ffeafc564d8bf6e54b398f6164375e37723f3
parentfa206387ad5b2b8e4eb0efa21fcbe8be1e58c430 (diff)
downloadopenttd-3d3d8d7c47f3fb98abeefe943f7c94f4485f3dec.tar.xz
(svn r9303) -Codechange: Use cargo class when counting passengers in a road vehicle crash, and when loading aircraft.
-rw-r--r--src/roadveh_cmd.cpp2
-rw-r--r--src/vehicle.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/roadveh_cmd.cpp b/src/roadveh_cmd.cpp
index aeed9704a..74d7aa7a8 100644
--- a/src/roadveh_cmd.cpp
+++ b/src/roadveh_cmd.cpp
@@ -596,7 +596,7 @@ static void RoadVehCrash(Vehicle *v)
InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, STATUS_BAR);
pass = 1;
- if (v->cargo_type == CT_PASSENGERS) pass += v->cargo_count;
+ if (IsCargoInClass(v->cargo_type, CC_PASSENGERS)) pass += v->cargo_count;
v->cargo_count = 0;
SetDParam(0, pass);
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index 3ab08b31a..29e66640f 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -700,7 +700,7 @@ static bool CanFillVehicle_FullLoadAny(Vehicle *v)
//if the aircraft carries passengers and is NOT full, then
//continue loading, no matter how much mail is in
if (v->type == VEH_AIRCRAFT &&
- v->cargo_type == CT_PASSENGERS &&
+ IsCargoInClass(v->cargo_type, CC_PASSENGERS) &&
v->cargo_cap != v->cargo_count) {
return true;
}