summaryrefslogtreecommitdiff
path: root/src/engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 0cccfcaac..1381dbb14 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -81,6 +81,8 @@ Engine::Engine(VehicleType type, EngineID base)
this->info.climates = 0x80;
/* Set model life to maximum to make wagons available */
this->info.base_life = 0xFF;
+ /* Set road vehicle tractive effort to the default value */
+ if (type == VEH_ROAD) this->u.road.tractive_effort = 0x4C;
return;
}