Skip to content

Commit

Permalink
Fix Double_Trouble
Browse files Browse the repository at this point in the history
Double trouble sets both Terrors as LVL 2 now.
  • Loading branch information
ChrisFeline committed Feb 23, 2025
1 parent e38c16f commit 6317b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Models/Index/TerrorMatrix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public TerrorMatrix(string roundType, params int[] indexes) {
Terrors = new ToNIndex.TerrorInfo[indexes.Length];
for (int i = 0; i < Terrors.Length; i++) {
ToNIndex.TerrorInfo info = new(indexes[i], i > 1 && RoundType == ToNRoundType.Midnight ? ToNIndex.TerrorGroup.Alternates : ToNIndex.TerrorGroup.Terrors);
if (i == StartIndex && lvl > 1) info.Level = lvl;
if ((i == StartIndex || RoundType == ToNRoundType.Double_Trouble) && lvl > 1) info.Level = lvl;
Terrors[i] = info;
}
break;
Expand Down

0 comments on commit 6317b58

Please sign in to comment.