Skip to content

Commit

Permalink
Fix missing map id in raid map check
Browse files Browse the repository at this point in the history
  • Loading branch information
Sejsel committed Nov 23, 2024
1 parent b4f0a1a commit afed484
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EVTCAnalytics/GameData/MapIds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ public static class MapIds

public static bool IsRaidMap(int id)
{
return id is RaidWing1 or RaidWing2 or RaidWing3 or RaidWing4 or RaidWing5 or RaidWing6 or RaidWing7;
return id is RaidWing1 or RaidWing2 or RaidWing3 or RaidWing4 or RaidWing5 or RaidWing6 or RaidWing7 or RaidWing8;
}
}

0 comments on commit afed484

Please sign in to comment.