mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-30 05:43:12 +01:00
Merge pull request #4986 from LiMCrosS/patch-1
Scripts/Icecrown Citadel: Updated Sindragosa MovementInform hooks to match the movement generator type
This commit is contained in:
@@ -646,7 +646,7 @@ class npc_spinestalker : public CreatureScript
|
||||
|
||||
void MovementInform(uint32 type, uint32 point)
|
||||
{
|
||||
if (type != POINT_MOTION_TYPE || point != POINT_FROSTWYRM_LAND)
|
||||
if (type != EFFECT_MOTION_TYPE || point != POINT_FROSTWYRM_LAND)
|
||||
return;
|
||||
|
||||
me->setActive(false);
|
||||
@@ -761,7 +761,7 @@ class npc_rimefang : public CreatureScript
|
||||
|
||||
void MovementInform(uint32 type, uint32 point)
|
||||
{
|
||||
if (type != POINT_MOTION_TYPE || point != POINT_FROSTWYRM_LAND)
|
||||
if (type != EFFECT_MOTION_TYPE || point != POINT_FROSTWYRM_LAND)
|
||||
return;
|
||||
|
||||
me->setActive(false);
|
||||
|
||||
Reference in New Issue
Block a user