From 1bea18b440639b7e3a4e723eb88fbb5c4be8ef3d Mon Sep 17 00:00:00 2001 From: peter1138 Date: Mon, 19 Mar 2007 20:54:13 +0000 Subject: (svn r9352) -Codechange: Use cargo class to determine if an aircraft should carry mail --- src/aircraft_cmd.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/aircraft_cmd.cpp') diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp index 74ab23e66..624c0afe9 100644 --- a/src/aircraft_cmd.cpp +++ b/src/aircraft_cmd.cpp @@ -30,6 +30,7 @@ #include "newgrf_sound.h" #include "date.h" #include "spritecache.h" +#include "cargotype.h" /** this maps the terminal to its corresponding state and block flag * currently set for 10 terms, 4 helipads */ @@ -647,7 +648,7 @@ int32 CmdRefitAircraft(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) v->cargo_cap = pass; Vehicle *u = v->next; - uint mail = new_cid != CT_PASSENGERS ? 0 : avi->mail_capacity; + uint mail = IsCargoInClass(new_cid, CC_PASSENGERS) ? avi->mail_capacity : 0; u->cargo_cap = mail; if (v->cargo_type == new_cid) { v->cargo_count = min(pass, v->cargo_count); -- cgit v1.2.3-54-g00ecf