Skip to content

Commit

Permalink
fix: dont count the lurker in ssc progression (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyeriah committed Dec 13, 2023
1 parent f6f686c commit 97b2def
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ enum SSCMisc
{
GO_LADY_VASHJ_BRIDGE_CONSOLE = 184568,
MAP_SSC = 548,
DATA_LURKER = 1,
DATA_VASHJ = 6
};

Expand Down Expand Up @@ -59,6 +60,11 @@ class GlobalSerpentshrineScript : public GlobalScript
continue;
}

if (id == DATA_LURKER)
{
continue;
}

if (instance->GetBossState(id) != DONE)
{
hasIncompleteBosses = true;
Expand Down

0 comments on commit 97b2def

Please sign in to comment.