fix(Core/Creature): Allow Multi id in areas with zone script (#10735)
This commit is contained in:
parent
881760821e
commit
da5258bd0b
1 changed files with 2 additions and 2 deletions
|
|
@ -1506,8 +1506,8 @@ bool Creature::CreateFromProto(ObjectGuid::LowType guidlow, uint32 Entry, uint32
|
|||
SetZoneScript();
|
||||
if (GetZoneScript() && data)
|
||||
{
|
||||
Entry = GetZoneScript()->GetCreatureEntry(guidlow, data);
|
||||
if (!Entry)
|
||||
uint32 FirstEntry = GetZoneScript()->GetCreatureEntry(guidlow, data);
|
||||
if (!FirstEntry)
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue