summaryrefslogtreecommitdiffstats
path: root/src/core/FileLoader.cpp
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-05-08 11:04:00 +0200
committerGitHub <noreply@github.com>2020-05-08 11:04:00 +0200
commit2171ebe2dae896303b2da9716630096ba3921673 (patch)
tree70be3e22307bc947702b0d12c7fc5fb802c3f1ef /src/core/FileLoader.cpp
parentMerge remote-tracking branch 'origin/master' into miami (diff)
parentfinal fix (diff)
downloadre3-2171ebe2dae896303b2da9716630096ba3921673.tar
re3-2171ebe2dae896303b2da9716630096ba3921673.tar.gz
re3-2171ebe2dae896303b2da9716630096ba3921673.tar.bz2
re3-2171ebe2dae896303b2da9716630096ba3921673.tar.lz
re3-2171ebe2dae896303b2da9716630096ba3921673.tar.xz
re3-2171ebe2dae896303b2da9716630096ba3921673.tar.zst
re3-2171ebe2dae896303b2da9716630096ba3921673.zip
Diffstat (limited to 'src/core/FileLoader.cpp')
-rw-r--r--src/core/FileLoader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/FileLoader.cpp b/src/core/FileLoader.cpp
index a37adc21..07e2eee7 100644
--- a/src/core/FileLoader.cpp
+++ b/src/core/FileLoader.cpp
@@ -926,10 +926,10 @@ CFileLoader::LoadCarPathNode(const char *line, int id, int node, bool waterPath)
if(id == -1)
ThePaths.StoreDetachedNodeInfoCar(node, type, next, x, y, z, width, numLeft, numRight,
- !!(flags&1), !!(flags&4), speed, !!(flags&2), waterPath, spawnRate, false);
+ !!(flags&1), !!(flags&4), speed, !!(flags&2), waterPath, spawnRate * 15, false);
else
ThePaths.StoreNodeInfoCar(id, node, type, next, x, y, z, 0, numLeft, numRight,
- !!(flags&1), !!(flags&4), speed, !!(flags&2), waterPath, spawnRate);
+ !!(flags&1), !!(flags&4), speed, !!(flags&2), waterPath, spawnRate * 15);
}