Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mdX7 committed Mar 25, 2024
1 parent 74b133f commit 6019751
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/server/scripts/EasternKingdoms/zone_stormwind_city.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,9 @@ enum AncientCursesData
POINT_LYSANDER_STEP_TO_DOOR = 1,

PATH_ARKONARIN_WALK_TO_MOUNT_UP = 20735300,
PATH_ARKONARIN_FLY_TO_FELLWOOD = 20735301,
PATH_ARKONARIN_FLY_TO_FELWOOD = 20735301,
PATH_LYSANDER_WALK_TO_MOUNT_UP = 20270001,
PATH_LYSANDER_FLY_TO_FELLWOOD = 20270002
PATH_LYSANDER_FLY_TO_FELWOOD = 20270002
};

Position const LysanderWalkToTheDoor = { -8051.493f, 820.21704f, 68.30904f };
Expand All @@ -368,7 +368,7 @@ struct npc_arkonarin_starshade_ancient_curses : public ScriptedAI
me->SetMountDisplayId(DISPLAY_ID_STARSHADE_MOUNT);
_scheduler.Schedule(2s + 500ms, [this](TaskContext /*context*/)
{
me->GetMotionMaster()->MovePath(PATH_ARKONARIN_FLY_TO_FELLWOOD, false);
me->GetMotionMaster()->MovePath(PATH_ARKONARIN_FLY_TO_FELWOOD, false);
me->DespawnOrUnsummon(5s);
});
}
Expand Down Expand Up @@ -396,7 +396,7 @@ struct npc_lysande_starshade_ancient_curses : public ScriptedAI
me->SetMountDisplayId(DISPLAY_ID_STARSHADE_MOUNT);
_scheduler.Schedule(2s + 500ms, [this](TaskContext /*context*/)
{
me->GetMotionMaster()->MovePath(PATH_LYSANDER_FLY_TO_FELLWOOD, false);
me->GetMotionMaster()->MovePath(PATH_LYSANDER_FLY_TO_FELWOOD, false);
me->DespawnOrUnsummon(5s);
});
}
Expand Down

0 comments on commit 6019751

Please sign in to comment.