summaryrefslogtreecommitdiff
path: root/src/engine.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-01-08 18:16:26 +0000
committerpeter1138 <peter1138@openttd.org>2008-01-08 18:16:26 +0000
commit7a5c529db4c1d9c45acbf2f2fbf3819794ec05da (patch)
tree8988827c54087526a11977da8d855a0af9208193 /src/engine.cpp
parentd2fb6614c65c7798142485ceedab487a658440e4 (diff)
downloadopenttd-7a5c529db4c1d9c45acbf2f2fbf3819794ec05da.tar.xz
(svn r11783) -Codechange: compare engine type with its type property, not by its index
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 8920bc4b5..856c2c25c 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -329,15 +329,14 @@ static void NewVehicleAvailable(Engine *e)
/* Do not introduce new rail wagons */
if (IsWagon(index)) return;
- if (index < NUM_TRAIN_ENGINES) {
+ if (e->type == VEH_TRAIN) {
/* maybe make another rail type available */
RailType railtype = RailVehInfo(index)->railtype;
assert(railtype < RAILTYPE_END);
FOR_ALL_PLAYERS(p) {
if (p->is_active) SetBit(p->avail_railtypes, railtype);
}
- }
- if ((index - NUM_TRAIN_ENGINES) < NUM_ROAD_ENGINES) {
+ } else if (e->type == VEH_ROAD) {
/* maybe make another road type available */
FOR_ALL_PLAYERS(p) {
if (p->is_active) SetBit(p->avail_roadtypes, HasBit(EngInfo(index)->misc_flags, EF_ROAD_TRAM) ? ROADTYPE_TRAM : ROADTYPE_ROAD);