Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions BLART/Modules/ServerCountUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public static async Task DoUpdate()
}

int exiledCount = servers.Count(s => GetServerNameFromInfo(s.Info).Contains("Exiled"));
double percent = (double) exiledCount / servers.Length * 100;
string text = $"EXILED Domination: {Math.Floor(percent)}%";
double percent = Math.Floor((double) exiledCount / servers.Length * 100);
string text = percent is 69 ? $"SEXILED Domination: {percent}%" : $"EXILED Domination: {percent}%";

if (_total != 0 && _total == exiledCount)
return;
Expand All @@ -52,4 +52,4 @@ public static async Task DoUpdate()
await Task.Delay(600000);
}
}
}
}