diff options
| author | Shauren <shauren.trinity@gmail.com> | 2020-01-14 23:53:08 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2021-12-20 21:40:47 +0100 |
| commit | 5d02739b989a66e1d4326035e53ad889be3eeab6 (patch) | |
| tree | 0d46290f3714840f23b31ca0c79fadefb64919fb /src/server/scripts/Argus | |
| parent | 45585b53053b215a4ab225b8c803f6fc6616eb74 (diff) | |
Scripts: Fix rbac permission for skipping default boss sequencing check
(cherry picked from commit e660c8bc19198d9e2e912c5243498469f75b0ee6)
Diffstat (limited to 'src/server/scripts/Argus')
| -rw-r--r-- | src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp b/src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp index 3e320218b87..8d4b38852d4 100644 --- a/src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp +++ b/src/server/scripts/Argus/AntorusTheBurningThrone/boss_garothi_worldbreaker.cpp @@ -219,10 +219,10 @@ struct boss_garothi_worldbreaker : public BossAI me->SummonCreatureGroup(SUMMON_GROUP_ID_SURGING_FEL); } - void JustEngagedWith(Unit* /*who*/) override + void JustEngagedWith(Unit* who) override { me->SetReactState(REACT_AGGRESSIVE); - _JustEngagedWith(); + BossAI::JustEngagedWith(who); Talk(SAY_AGGRO); DoCastSelf(SPELL_MELEE); instance->SendEncounterUnit(ENCOUNTER_FRAME_ENGAGE, me); |
