diff options
-rw-r--r-- | game/vehicles/railloco.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/vehicles/railloco.cpp b/game/vehicles/railloco.cpp index d61b882..84a4aee 100644 --- a/game/vehicles/railloco.cpp +++ b/game/vehicles/railloco.cpp @@ -70,13 +70,13 @@ void RailWagon::tick(TickDuration) { } Brush47::Brush47(const LinkPtr & l) : RailLoco(l, "brush47.obj", "brush47.png") { wheelBase = 15.7F; - length = 19.38F; + length = 20.F; linkDist = wheelBase; } Brush47Wagon::Brush47Wagon(const LinkPtr & l) : RailWagon(l, "brush47.obj", "brush47.png") { wheelBase = 15.7F; - length = 19.38F; + length = 20.F; linkDist = wheelBase; } |