fix(Scripts/Hyjal): fix some build warnings for unused parameters (#18986)

This commit is contained in:
sudlud 2024-06-01 12:25:53 +02:00 committed by GitHub
parent 94991004dc
commit 8e9e134924
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ public:
});
}
void EnterEvadeMode(EvadeReason why) override
void EnterEvadeMode(EvadeReason /*why*/) override
{
std::list<Creature* > infernalList;
me->GetCreatureListWithEntryInGrid(infernalList, NPC_TOWERING_INFERNAL, 100.0f);

View file

@ -57,7 +57,7 @@ public:
});
}
void EnterEvadeMode(EvadeReason why) override
void EnterEvadeMode(EvadeReason /*why*/) override
{
std::list<Creature* > doomguardList;
me->GetCreatureListWithEntryInGrid(doomguardList, NPC_LESSER_DOOMGUARD, 100.0f);