We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c40c89b + c2ada27 commit 042c48cCopy full SHA for 042c48c
1 file changed
TTT/SpecialRound/SpecialRoundStarter.cs
@@ -86,8 +86,7 @@ private List<AbstractSpecialRound> getSpecialRounds() {
86
var rounds = Provider.GetServices<ITerrorModule>()
87
.OfType<AbstractSpecialRound>()
88
.Where(r => r.Config.Weight > 0 && !exclude.Contains(r))
89
- .Where(r
90
- => !exclude.Any(er => er.ConflictsWith(r) && !r.ConflictsWith(er)))
+ .Where(r => !exclude.Any(er => er.ConflictsWith(r) || r.ConflictsWith(er)))
91
.ToList();
92
if (rounds.Count == 0) return null;
93
var totalWeight = rounds.Sum(r => r.Config.Weight);
0 commit comments