fix(Scripts/Outland): LoadMinionData buffer overflow (#21461)

This commit is contained in:
Jelle Meeus 2025-02-15 14:08:49 +01:00 committed by GitHub
parent e5dbc39cc5
commit fae07daa4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -38,7 +38,8 @@ MinionData const minionData[] =
{ NPC_KROSH_FIREHAND, DATA_MAULGAR },
{ NPC_OLM_THE_SUMMONER, DATA_MAULGAR },
{ NPC_KIGGLER_THE_CRAZED, DATA_MAULGAR },
{ NPC_BLINDEYE_THE_SEER, DATA_MAULGAR }
{ NPC_BLINDEYE_THE_SEER, DATA_MAULGAR },
{ 0, 0 } // END
};
class instance_gruuls_lair : public InstanceMapScript

View File

@ -32,7 +32,8 @@ DoorData const doorData[] =
MinionData const minionData[] =
{
{ NPC_HELLFIRE_CHANNELER, DATA_MAGTHERIDON }
{ NPC_HELLFIRE_CHANNELER, DATA_MAGTHERIDON },
{ 0, 0 } // END
};
class instance_magtheridons_lair : public InstanceMapScript