diff options
author | aap <aap@papnet.eu> | 2021-01-23 12:49:54 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2021-01-23 12:49:54 +0100 |
commit | 2814f2e8cf4491adf4bfccb4371ada95243ce5fa (patch) | |
tree | 0b9aa771adee42a7da238b6213f57d6d6c16d17b /src/control | |
parent | Merge pull request #979 from erorcun/miami (diff) | |
download | re3-2814f2e8cf4491adf4bfccb4371ada95243ce5fa.tar re3-2814f2e8cf4491adf4bfccb4371ada95243ce5fa.tar.gz re3-2814f2e8cf4491adf4bfccb4371ada95243ce5fa.tar.bz2 re3-2814f2e8cf4491adf4bfccb4371ada95243ce5fa.tar.lz re3-2814f2e8cf4491adf4bfccb4371ada95243ce5fa.tar.xz re3-2814f2e8cf4491adf4bfccb4371ada95243ce5fa.tar.zst re3-2814f2e8cf4491adf4bfccb4371ada95243ce5fa.zip |
Diffstat (limited to 'src/control')
-rw-r--r-- | src/control/PathFind.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/control/PathFind.cpp b/src/control/PathFind.cpp index cbc29db4..2d3972f6 100644 --- a/src/control/PathFind.cpp +++ b/src/control/PathFind.cpp @@ -338,17 +338,17 @@ CPathFind::StoreNodeInfoCar(int16 id, int16 node, int8 type, int8 next, int16 x, InfoForTileCars[i].x = x/16.0f; InfoForTileCars[i].y = y/16.0f; InfoForTileCars[i].z = z/16.0f; - InfoForTilePeds[i].width = 8.0f*Min(width, 15.0f); + InfoForTileCars[i].width = 8.0f*Min(width, 15.0f); InfoForTileCars[i].numLeftLanes = numLeft; InfoForTileCars[i].numRightLanes = numRight; - InfoForTilePeds[i].crossing = false; - InfoForTilePeds[i].speedLimit = 0; - InfoForTilePeds[i].roadBlock = false; - InfoForTilePeds[i].disabled = false; - InfoForTilePeds[i].waterPath = false; - InfoForTilePeds[i].onlySmallBoats = false; - InfoForTilePeds[i].betweenLevels = false; - InfoForTilePeds[i].spawnRate = Min(spawnRate, 15); + InfoForTileCars[i].crossing = false; + InfoForTileCars[i].speedLimit = 0; + InfoForTileCars[i].roadBlock = false; + InfoForTileCars[i].disabled = false; + InfoForTileCars[i].waterPath = false; + InfoForTileCars[i].onlySmallBoats = false; + InfoForTileCars[i].betweenLevels = false; + InfoForTileCars[i].spawnRate = Min(spawnRate, 15); if(node == 11) InfoForTileCars[id*12].SwapConnectionsToBeRightWayRound(); |