mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-24 06:00:05 +01:00
(svn r17977) -Fix: Busses and trucks are distinguished by cargo class.
This commit is contained in:
parent
79627b4f89
commit
b012a75c47
@ -29,6 +29,7 @@
|
||||
#include "../company_gui.h"
|
||||
#include "../window_func.h"
|
||||
#include "../openttd.h"
|
||||
#include "../cargotype.h"
|
||||
|
||||
#include "table/strings.h"
|
||||
|
||||
@ -1380,7 +1381,7 @@ void NetworkPopulateCompanyStats(NetworkCompanyStats *stats)
|
||||
byte type = 0;
|
||||
switch (v->type) {
|
||||
case VEH_TRAIN: type = 0; break;
|
||||
case VEH_ROAD: type = (v->cargo_type != CT_PASSENGERS) ? 1 : 2; break;
|
||||
case VEH_ROAD: type = IsCargoInClass(v->cargo_type, CC_PASSENGERS) ? 2 : 1; break;
|
||||
case VEH_AIRCRAFT: type = 3; break;
|
||||
case VEH_SHIP: type = 4; break;
|
||||
default: continue;
|
||||
|
Loading…
Reference in New Issue
Block a user