Skip to content

Commit afed484

Browse files
committed
Fix missing map id in raid map check
1 parent b4f0a1a commit afed484

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EVTCAnalytics/GameData/MapIds.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ public static class MapIds
2828

2929
public static bool IsRaidMap(int id)
3030
{
31-
return id is RaidWing1 or RaidWing2 or RaidWing3 or RaidWing4 or RaidWing5 or RaidWing6 or RaidWing7;
31+
return id is RaidWing1 or RaidWing2 or RaidWing3 or RaidWing4 or RaidWing5 or RaidWing6 or RaidWing7 or RaidWing8;
3232
}
3333
}

0 commit comments

Comments
 (0)