src/station_cmd.cpp
changeset 10743 1b34d7d4ba5e
parent 10709 348166bd0065
child 10745 a534ff6330d3
--- a/src/station_cmd.cpp	Tue May 27 16:56:58 2008 +0000
+++ b/src/station_cmd.cpp	Tue May 27 18:20:14 2008 +0000
@@ -1688,11 +1688,11 @@
 
 	/* 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 = min(afc->noise_level, distance / town_tolerance_distance);
-
-	/* If the noise reduction equals the airport noise itself, don't give it for free. Use it all minus 1.
+	uint noise_reduction = distance / town_tolerance_distance;
+
+	/* If the noise reduction equals the airport noise itself, don't give it for free.
 	 * Otherwise, simply reduce the airport's level. */
-	return max(1U, noise_reduction == afc->noise_level ? afc->noise_level - 1 : afc->noise_level - noise_reduction);
+	return noise_reduction >= afc->noise_level ? 1 : afc->noise_level - noise_reduction;
 }
 
 /** Place an Airport.