diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-15 19:28:17 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-15 19:28:17 +0000 |
commit | 31eb9fd1714568ff74c60a3a9df6e89e53d53d50 (patch) | |
tree | 5b32fd3907327e2500b53a37bcb54efe3c9f6fe1 | |
parent | Return a Physical's whole location, not just position (diff) | |
download | ilt-31eb9fd1714568ff74c60a3a9df6e89e53d53d50.tar.bz2 ilt-31eb9fd1714568ff74c60a3a9df6e89e53d53d50.tar.xz ilt-31eb9fd1714568ff74c60a3a9df6e89e53d53d50.zip |
Increase length of Brush47
It's supposed to cover half the gap between wagons too
-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; } |