station_cmd.c
changeset 2422 914a12dee832
parent 2395 19b4da30806b
child 2425 99e1e8430a28
--- a/station_cmd.c	Tue Sep 13 09:23:23 2005 +0000
+++ b/station_cmd.c	Tue Sep 13 12:19:27 2005 +0000
@@ -779,7 +779,7 @@
 				b) the build_on_slopes switch is disabled
 		*/
 		if (IsSteepTileh(tileh) ||
-			(((!_patches.ainew_active && _is_ai_player) || !_patches.build_on_slopes)
+			((_is_old_ai_player || !_patches.build_on_slopes)
 			&& tileh != 0)) {
 
 			_error_message = STR_0007_FLAT_LAND_REQUIRED;
@@ -1009,7 +1009,7 @@
 
 		if (st->train_tile != 0) {
 			// check if we want to expanding an already existing station?
-			if ((!_patches.ainew_active && _is_ai_player) || !_patches.join_stations)
+			if (_is_old_ai_player || !_patches.join_stations)
 				return_cmd_error(STR_3005_TOO_CLOSE_TO_ANOTHER_RAILROAD);
 			if (!CanExpandRailroadStation(st, finalvalues, direction))
 				return CMD_ERROR;