summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-05-20 20:19:47 +0200
committeraap <aap@papnet.eu>2020-05-20 20:19:47 +0200
commitf2e55d57cc84af072d7955be90924c1cbdecfd9b (patch)
treebcdf3151eaab37430d9aeac886a55acbe7f65ccd /src/core
parentMerge branch 'miami' of github.com:GTAmodding/re3 into miami (diff)
parentMerge pull request #572 from erorcun/miami (diff)
downloadre3-f2e55d57cc84af072d7955be90924c1cbdecfd9b.tar
re3-f2e55d57cc84af072d7955be90924c1cbdecfd9b.tar.gz
re3-f2e55d57cc84af072d7955be90924c1cbdecfd9b.tar.bz2
re3-f2e55d57cc84af072d7955be90924c1cbdecfd9b.tar.lz
re3-f2e55d57cc84af072d7955be90924c1cbdecfd9b.tar.xz
re3-f2e55d57cc84af072d7955be90924c1cbdecfd9b.tar.zst
re3-f2e55d57cc84af072d7955be90924c1cbdecfd9b.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/World.cpp5
-rw-r--r--src/core/config.h2
2 files changed, 3 insertions, 4 deletions
diff --git a/src/core/World.cpp b/src/core/World.cpp
index 16e5e80d..433f9745 100644
--- a/src/core/World.cpp
+++ b/src/core/World.cpp
@@ -1818,9 +1818,8 @@ CWorld::RepositionOneObject(CEntity *pEntity)
modelId == MI_DUMP1 || modelId == MI_ROADWORKBARRIER1 || modelId == MI_BUSSIGN1 || modelId == MI_NOPARKINGSIGN1 ||
modelId == MI_PHONESIGN || modelId == MI_FIRE_HYDRANT || modelId == MI_BOLLARDLIGHT ||
modelId == MI_PARKTABLE || modelId == MI_PARKINGMETER2 || modelId == MI_TELPOLE02 ||
- modelId == MI_PARKBENCH || modelId == MI_BARRIER1 || IsTreeModel(modelId)
-// TODO(MIAMI): this is actually a different case
-|| IsStreetLight(modelId)
+ modelId == MI_PARKBENCH || modelId == MI_BARRIER1 || IsTreeModel(modelId) ||
+ IsLightThatNeedsRepositioning(modelId)
) {
CVector &position = pEntity->GetMatrix().GetPosition();
CColModel *pColModel = pEntity->GetColModel();
diff --git a/src/core/config.h b/src/core/config.h
index 548092f7..105454fa 100644
--- a/src/core/config.h
+++ b/src/core/config.h
@@ -95,7 +95,7 @@ enum Config {
NUMPACMANPICKUPS = 256,
NUMEVENTS = 64,
- NUM_CARGENS = 160,
+ NUM_CARGENS = 185,
NUM_PATH_NODES_IN_AUTOPILOT = 8,