fix(Scripts/OutdoorPvP): Fix Halaa guards not spawning (#21585)
This commit is contained in:
parent
29db247503
commit
0e77a7a447
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ void UpdateCreatureHalaa(ObjectGuid::LowType spawnId, Map* map, float x, float y
|
|||
sObjectMgr->AddCreatureToGrid(spawnId, &data);
|
||||
|
||||
// Spawn if necessary (loaded grids only)
|
||||
if (!map->Instanceable() && !map->IsGridCreated(x, y))
|
||||
if (!map->Instanceable() && map->IsGridLoaded(x, y))
|
||||
{
|
||||
Creature* creature = new Creature();
|
||||
if (!creature->LoadCreatureFromDB(spawnId, map, true, true))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue