From d4376779f843b1310a3e0c9a527f1a23698954ab Mon Sep 17 00:00:00 2001 From: terkhen Date: Thu, 28 Jan 2010 20:54:29 +0000 Subject: (svn r18939) -Codechange [FS#3545]: Move train slope steepness to its own function. --- src/train_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/train_cmd.cpp') diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp index a1c9d51d2..f2c2e4d37 100644 --- a/src/train_cmd.cpp +++ b/src/train_cmd.cpp @@ -139,7 +139,7 @@ void Train::CargoChanged() for (Train *u = this; u != NULL; u = u->Next()) { uint32 current_weight = u->GetWeight(); weight += current_weight; - u->tcache.cached_slope_resistance = current_weight * 20 * _settings_game.vehicle.train_slope_steepness; //1% slope * slope steepness + u->tcache.cached_slope_resistance = current_weight * u->GetSlopeSteepness(); } /* store consist weight in cache */ -- cgit v1.2.3-54-g00ecf