From fb8e5f61b181ca34c43d0a0e8d39ee95af2eb60a Mon Sep 17 00:00:00 2001 From: matthijs Date: Sun, 3 Jul 2005 13:02:54 +0000 Subject: (svn r2514) - Codechange: [NPF] Move the checking of railtype into a funciton IsCompatibleRail(). - Codechange: [NPF] Check the railtype along a route against the engine type instead of against the previouse tile. This clears the way for electriefied rails. - Add: [NPF] [ 1209644 ] A penalty for crossings (peter1138) --- settings.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'settings.c') diff --git a/settings.c b/settings.c index d63662597..03d0abbe4 100644 --- a/settings.c +++ b/settings.c @@ -977,6 +977,8 @@ const SettingDesc patch_settings[] = { {"npf_water_curve_penalty", SDT_UINT32, (void*)(NPF_TILE_LENGTH / 4), &_patches.npf_water_curve_penalty, NULL}, /* This is the penalty for road, same as for rail. */ {"npf_road_curve_penalty", SDT_UINT32, (void*)(1), &_patches.npf_road_curve_penalty, NULL}, + /* This is the penalty for level crossings, for both road and rail vehicles */ + {"npf_crossing_penalty", SDT_UINT32, (void*)(3 * NPF_TILE_LENGTH), &_patches.npf_crossing_penalty, NULL}, {NULL, 0, NULL, NULL, NULL} }; -- cgit v1.2.3-54-g00ecf