From ee0739561d0ee2167f769ff0abca6302ce270581 Mon Sep 17 00:00:00 2001 From: KUDr Date: Sat, 17 Feb 2007 00:18:11 +0000 Subject: (svn r8766) -Fix[YAPF]: rail station platform penalty not calculated properly --- src/yapf/yapf_costrail.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/yapf/yapf_costrail.hpp b/src/yapf/yapf_costrail.hpp index b48257e46..e1fd61068 100644 --- a/src/yapf/yapf_costrail.hpp +++ b/src/yapf/yapf_costrail.hpp @@ -282,13 +282,13 @@ public: // add penalty for skipped station tiles if (F.m_is_station) { + uint platform_length = F.m_tiles_skipped + 1; if (target_seen) { // it is our destination station - uint platform_length = F.m_tiles_skipped + 1; segment_cost += PlatformLengthPenalty(platform_length); } else { // station is not our destination station, apply penalty for skipped platform tiles - segment_cost += Yapf().PfGetSettings().rail_station_penalty * F.m_tiles_skipped; + segment_cost += Yapf().PfGetSettings().rail_station_penalty * platform_length; } } -- cgit v1.2.3-54-g00ecf