fix(Scripts/RuinsOfAhnQiraj): Fixed crystal activation animation. (#12647)
This commit is contained in:
parent
6ad764c520
commit
750f7ee8e9
2 changed files with 5 additions and 3 deletions
|
|
@ -0,0 +1,2 @@
|
|||
--
|
||||
UPDATE `gameobject_template` SET `data3`=8000 WHERE `entry`=180619;
|
||||
|
|
@ -284,14 +284,14 @@ public:
|
|||
{
|
||||
InstanceScript* instance = player->GetInstanceScript();
|
||||
if (!instance)
|
||||
return false;
|
||||
return true;
|
||||
|
||||
Creature* ossirian = instance->GetCreature(DATA_OSSIRIAN);
|
||||
if (!ossirian || instance->GetBossState(DATA_OSSIRIAN) != IN_PROGRESS)
|
||||
return false;
|
||||
return true;
|
||||
|
||||
ossirian->AI()->DoAction(ACTION_TRIGGER_WEAKNESS);
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue