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.
1 parent eff6889 commit deb2e1cCopy full SHA for deb2e1c
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