summaryrefslogtreecommitdiff
path: root/yapf/yapf_costrail.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'yapf/yapf_costrail.hpp')
-rw-r--r--yapf/yapf_costrail.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/yapf/yapf_costrail.hpp b/yapf/yapf_costrail.hpp
index 76af3652b..ab708410d 100644
--- a/yapf/yapf_costrail.hpp
+++ b/yapf/yapf_costrail.hpp
@@ -148,10 +148,10 @@ public:
int needed_platform_length = (v->u.rail.cached_total_length + TILE_SIZE - 1) / TILE_SIZE;
if (platform_length > needed_platform_length) {
// apply penalty for longer platform than needed
- cost += Yapf().PfGetSettings().rail_longer_platform_penalty * (platform_length - needed_platform_length);
- } else {
+ cost += Yapf().PfGetSettings().rail_longer_platform_penalty;
+ } else if (needed_platform_length > platform_length) {
// apply penalty for shorter platform than needed
- cost += Yapf().PfGetSettings().rail_shorter_platform_penalty * (needed_platform_length - platform_length);
+ cost += Yapf().PfGetSettings().rail_shorter_platform_penalty;
}
return cost;
}