This commit is contained in:
Kamron Batman 2026-07-25 10:57:07 -07:00
parent 357a05f8dc
commit 2a1d345223
No known key found for this signature in database
GPG key ID: 7D81DF26D9A5D94A

View file

@ -46,8 +46,9 @@ public static class BanChannel
return;
}
foreach (var existing in _reporters)
for (var i = 0; i < _reporters.Length; i++)
{
var existing = _reporters[i];
if (existing.Name == reporter.Name)
{
return;
@ -84,8 +85,9 @@ public static class BanChannel
public static void Stop()
{
foreach (var reporter in _reporters)
for (var i = 0; i < _reporters.Length; i++)
{
var reporter = _reporters[i];
try
{
reporter.Stop();