diff src/engine.cpp @ 8220:01778382728c draft

(svn r11783) -Codechange: compare engine type with its type property, not by its index
author peter1138 <peter1138@openttd.org>
date Tue, 08 Jan 2008 18:16:26 +0000
parents 6385dffc0b37
children 188d5ea22361
line wrap: on
line diff
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -329,15 +329,14 @@
 	/* 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);