src/station_cmd.cpp
changeset 10745 a534ff6330d3
parent 10743 1b34d7d4ba5e
child 10775 7061477bfbcf
--- a/src/station_cmd.cpp	Tue May 27 18:50:31 2008 +0000
+++ b/src/station_cmd.cpp	Tue May 27 19:03:06 2008 +0000
@@ -1683,9 +1683,6 @@
 	 * an actual decrease can be granted */
 	uint8 town_tolerance_distance = 8 + (_settings.difficulty.town_council_tolerance * 4);
 
-	/* The airport is in the "inner" distance where there is no noise reduction */
-	if (distance < town_tolerance_distance) return afc->noise_level;
-
 	/* now, we want to have the distance segmented using the distance judged bareable by town
 	 * This will give us the coefficient of reduction the distance provides. */
 	uint noise_reduction = distance / town_tolerance_distance;