rail_cmd.c
changeset 5059 fec3defb6e67
parent 5058 8175de8766c0
child 5069 68beabd19dca
--- a/rail_cmd.c	Wed Nov 08 09:18:27 2006 +0000
+++ b/rail_cmd.c	Wed Nov 08 10:09:46 2006 +0000
@@ -285,10 +285,9 @@
 			if (CmdFailed(ret)) return ret;
 			cost += ret;
 
-			/* XXX Assume a 'higher' railtype has preference. This means we
-			 * will convert from normal rail to electrified rail, but not
-			 * the other way around. */
-			if (GetRailType(tile) < railtype) {
+			/* If the rail types don't match, try to convert only if engines of
+			 * the present rail type are powered on the new rail type. */
+			if (GetRailType(tile) != railtype && HasPowerOnRail(GetRailType(tile), railtype)) {
 				ret = DoCommand(tile, tile, railtype, flags, CMD_CONVERT_RAIL);
 				if (CmdFailed(ret)) return ret;
 				cost += ret;