diff options
Diffstat (limited to 'src/server/game/Globals/ObjectMgr.cpp')
-rw-r--r-- | src/server/game/Globals/ObjectMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 7d09dacc22..484c76c377 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -2466,7 +2466,7 @@ uint32 ObjectMgr::AddCreData(uint32 entry, uint32 mapId, float x, float y, float if (!map->Instanceable() && !map->IsRemovalGrid(x, y)) { Creature* creature = new Creature(); - if (!creature->LoadCreatureFromDB(spawnId, map, true, false, true)) + if (!creature->LoadCreatureFromDB(spawnId, map, true, true)) { LOG_ERROR("sql.sql", "AddCreature: Cannot add creature entry {} to map", entry); delete creature; |