From 605073d6ecccf189f2bdb3a16a98e0d7a3941bf4 Mon Sep 17 00:00:00 2001 From: Toastie <toastie@toastiet0ast.com> Date: Thu, 20 Mar 2025 15:25:22 +1300 Subject: [PATCH] livechannels will be limited to 1 for a short time until some necessary things are implemented --- src/EllieBot/Modules/Utility/LiveChannel/LiveChannelService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EllieBot/Modules/Utility/LiveChannel/LiveChannelService.cs b/src/EllieBot/Modules/Utility/LiveChannel/LiveChannelService.cs index e2df525..f43db76 100644 --- a/src/EllieBot/Modules/Utility/LiveChannel/LiveChannelService.cs +++ b/src/EllieBot/Modules/Utility/LiveChannel/LiveChannelService.cs @@ -17,7 +17,7 @@ public class LiveChannelService( IReplacementService repSvc, ShardData shardData) : IReadyExecutor, IEService { - public const int MAX_LIVECHANNELS = 5; + public const int MAX_LIVECHANNELS = 1; private readonly ConcurrentDictionary<ulong, ConcurrentDictionary<ulong, LiveChannelConfig>> _liveChannels = new();