clear_cmd.c
changeset 4043 2ef4553a3be2
parent 4041 caf4fcb4e05b
child 4067 ab047dec0733
--- a/clear_cmd.c	Sun Jun 18 19:00:39 2006 +0000
+++ b/clear_cmd.c	Mon Jun 19 06:49:51 2006 +0000
@@ -259,13 +259,14 @@
 				if (IsSteepSlope(s)) return_cmd_error(STR_1008_MUST_REMOVE_RAILROAD_TRACK);
 
 				if (IsPlainRailTile(tile)) {
-					/* We need to check if a rail is on a leveled foundation and
-					 * then treat it as such. Important for correct tunneling */
+					/* If a piece of rail is on a foundation, prohibit any terraforming
+					 * of that tile. We do need to check this with the original slope, not
+					 * the would-be one. */
 					extern const TrackBits _valid_tileh_slopes[2][15];
 					TrackBits tb = GetTrackBits(tile);
-					uint foundation = (GetRailFoundation(s, tb) == 0) ? 1 : 0;
 
-					if (tb & ~_valid_tileh_slopes[foundation][s]) return_cmd_error(STR_1008_MUST_REMOVE_RAILROAD_TRACK);
+					if (GetRailFoundation(GetTileSlope(tile, NULL), tb) != 0) return_cmd_error(STR_1008_MUST_REMOVE_RAILROAD_TRACK);
+					if (tb & ~_valid_tileh_slopes[0][s]) return_cmd_error(STR_1008_MUST_REMOVE_RAILROAD_TRACK);
 				} else return_cmd_error(STR_5800_OBJECT_IN_THE_WAY);
 			}