diff options
author | aap <aap@papnet.eu> | 2019-07-31 23:57:18 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-07-31 23:57:18 +0200 |
commit | 78c15c4828a540fd6ad4f1816b8cc9610409f740 (patch) | |
tree | 800fc93cb0226accb1806a8104bc3eccfb4f71f7 /src/core | |
parent | Merge branch 'master' of github.com:GTAmodding/re3 (diff) | |
download | re3-78c15c4828a540fd6ad4f1816b8cc9610409f740.tar re3-78c15c4828a540fd6ad4f1816b8cc9610409f740.tar.gz re3-78c15c4828a540fd6ad4f1816b8cc9610409f740.tar.bz2 re3-78c15c4828a540fd6ad4f1816b8cc9610409f740.tar.lz re3-78c15c4828a540fd6ad4f1816b8cc9610409f740.tar.xz re3-78c15c4828a540fd6ad4f1816b8cc9610409f740.tar.zst re3-78c15c4828a540fd6ad4f1816b8cc9610409f740.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/FileLoader.cpp | 2 | ||||
-rw-r--r-- | src/core/config.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/core/FileLoader.cpp b/src/core/FileLoader.cpp index 14dc91cd..e9c06201 100644 --- a/src/core/FileLoader.cpp +++ b/src/core/FileLoader.cpp @@ -744,7 +744,7 @@ CFileLoader::LoadVehicleObject(const char *line) }else if(strncmp(type, "heli", 5) == 0){ mi->m_vehicleType = VEHICLE_TYPE_HELI; }else if(strncmp(type, "plane", 6) == 0){ - mi->m_wheelId = misc; + mi->m_planeLodId = misc; mi->m_wheelScale = 1.0f; mi->m_vehicleType = VEHICLE_TYPE_PLANE; }else if(strncmp(type, "bike", 5) == 0){ diff --git a/src/core/config.h b/src/core/config.h index 1f684869..85d79a01 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -121,3 +121,4 @@ enum Config { #define KANGAROO_CHEAT #define ASPECT_RATIO_SCALE #define USE_DEBUG_SCRIPT_LOADER +#define EXPLODING_AIRTRAIN // can blow up jumbo jet with rocket launcher |