mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-19 02:04:34 +00:00
fix(Scripts/Misc): Adjust points from old wrong 0 based indexing to smart ai indexing (#23472)
This commit is contained in:
@@ -114,10 +114,10 @@ struct boss_lieutenant_drake : public BossAI
|
||||
{
|
||||
switch (point)
|
||||
{
|
||||
case 7:
|
||||
case 8:
|
||||
Talk(SAY_ENTER);
|
||||
break;
|
||||
case 10:
|
||||
case 11:
|
||||
pathId = (me->GetEntry() * 10) + 1;
|
||||
runSecondPath = true;
|
||||
break;
|
||||
|
||||
@@ -51,7 +51,7 @@ enum Belnistrasz
|
||||
EVENT_FROST_NOVA = 6,
|
||||
|
||||
PATH_ESCORT = 871710,
|
||||
POINT_REACH_IDOL = 17,
|
||||
POINT_REACH_IDOL = 18,
|
||||
|
||||
QUEST_EXTINGUISHING_THE_IDOL = 3525,
|
||||
|
||||
|
||||
@@ -70,7 +70,7 @@ enum Emotes
|
||||
enum Points
|
||||
{
|
||||
POINT_AIR = 0,
|
||||
POINT_GROUND = 2,
|
||||
POINT_GROUND = 3,
|
||||
POINT_PARALYZE = 2
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user