mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-28 08:06:23 +00:00
fix(Scripts/Arcatraz): fix Trial of the Naaru: Tenacity complete condition (#15742)
* fix(Scripts/Arcatraz): fix Trial of the Naaru: Tenacity complete condition should now only complete on heroic mode * adaptation of edit to AC syntax brackets fixed :)
This commit is contained in:
@@ -349,7 +349,10 @@ public:
|
||||
instance->SetBossState(DATA_WARDEN_MELLICHAR, DONE);
|
||||
if (Creature* creature = summons.GetCreatureWithEntry(NPC_MILLHOUSE))
|
||||
{
|
||||
instance->DoCastSpellOnPlayers(SPELL_QID10886);
|
||||
if (IsHeroic())
|
||||
{
|
||||
instance->DoCastSpellOnPlayers(SPELL_QID10886);
|
||||
}
|
||||
creature->AI()->Talk(SAY_COMPLETE);
|
||||
creature->ReplaceAllNpcFlags(UNIT_NPC_FLAG_GOSSIP);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user