mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-22 03:34:35 +00:00
fix(Core/Scripts): Fix scripts where LoadObjectData can leave arrays boundaries. (#17070)
* fix(Core/Scripts): Fix scripts where LoadObjectData can leave arrays boundaries. * Fix build
This commit is contained in:
committed by
GitHub
parent
6b583089f3
commit
f4658a1df2
@@ -31,9 +31,10 @@ const Position PortalLocation[4] =
|
||||
{ -1930.9106f, 7183.5970f, 23.007639f, 3.59537f }
|
||||
};
|
||||
|
||||
ObjectData const creatureData[1] =
|
||||
ObjectData const creatureData[] =
|
||||
{
|
||||
{ NPC_MEDIVH, DATA_MEDIVH }
|
||||
{ NPC_MEDIVH, DATA_MEDIVH },
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
||||
class instance_the_black_morass : public InstanceMapScript
|
||||
|
||||
Reference in New Issue
Block a user