fix(Scripts/TempleOfAhnQiraj): Huhuran and Viscidus combat range (#13407)
This commit is contained in:
parent
96ff759953
commit
2bc6a81457
2 changed files with 5 additions and 1 deletions
|
|
@ -49,7 +49,10 @@ enum Events
|
|||
|
||||
struct boss_huhuran : public BossAI
|
||||
{
|
||||
boss_huhuran(Creature* creature) : BossAI(creature, DATA_HUHURAN) { }
|
||||
boss_huhuran(Creature* creature) : BossAI(creature, DATA_HUHURAN)
|
||||
{
|
||||
me->m_CombatDistance = 90.f;
|
||||
}
|
||||
|
||||
void Reset() override
|
||||
{
|
||||
|
|
|
|||
|
|
@ -101,6 +101,7 @@ struct boss_viscidus : public BossAI
|
|||
boss_viscidus(Creature* creature) : BossAI(creature, DATA_VISCIDUS)
|
||||
{
|
||||
me->LowerPlayerDamageReq(me->GetMaxHealth());
|
||||
me->m_CombatDistance = 60.f;
|
||||
}
|
||||
|
||||
bool CheckInRoom() override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue