summaryrefslogtreecommitdiff
path: root/game/vehicles/railloco.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-02-15 19:28:17 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2021-02-15 19:28:17 +0000
commit31eb9fd1714568ff74c60a3a9df6e89e53d53d50 (patch)
tree5b32fd3907327e2500b53a37bcb54efe3c9f6fe1 /game/vehicles/railloco.cpp
parentReturn a Physical's whole location, not just position (diff)
downloadilt-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
Diffstat (limited to 'game/vehicles/railloco.cpp')
-rw-r--r--game/vehicles/railloco.cpp4
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;
}