diff options
author | Shauren <shauren.trinity@gmail.com> | 2018-04-27 20:23:52 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2018-04-27 20:23:52 +0200 |
commit | 24d30dab84f93a200ad3acad6302327379f5031c (patch) | |
tree | f29ac310e8101bb0180cdeaf23f52c7c9c14755b /src/common/Collision/Models/ModelInstance.h | |
parent | 48911ec01c9c8d0c5006c3473112dab74f4b4837 (diff) |
Core/VMAPS: Fixed vmaps in single WMO instances like ragefire chasm
* Fixed some models not always being spawned because they only appear in one tile file but are large enough to cross tile boundaries (lava in Firelands at Ragnaros place)
Closes #21879
Diffstat (limited to 'src/common/Collision/Models/ModelInstance.h')
-rw-r--r-- | src/common/Collision/Models/ModelInstance.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/common/Collision/Models/ModelInstance.h b/src/common/Collision/Models/ModelInstance.h index 1edf3b0f442..04fe5b06c7b 100644 --- a/src/common/Collision/Models/ModelInstance.h +++ b/src/common/Collision/Models/ModelInstance.h @@ -35,9 +35,8 @@ namespace VMAP enum ModelFlags { MOD_M2 = 1, - MOD_WORLDSPAWN = 1 << 1, - MOD_HAS_BOUND = 1 << 2, - MOD_PARENT_SPAWN = 1 << 3 + MOD_HAS_BOUND = 1 << 1, + MOD_PARENT_SPAWN = 1 << 2 }; class TC_COMMON_API ModelSpawn |