From ae8a63eeac2ab8869dcf06186ee47f1890d60b5b Mon Sep 17 00:00:00 2001 From: Toastie <toastie@toastiet0ast.com> Date: Fri, 21 Mar 2025 19:44:13 +1300 Subject: [PATCH] fix build --- src/EllieBot/Modules/Utility/LiveChannel/LiveChannelCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EllieBot/Modules/Utility/LiveChannel/LiveChannelCommands.cs b/src/EllieBot/Modules/Utility/LiveChannel/LiveChannelCommands.cs index b3093f6..7b8ca9a 100644 --- a/src/EllieBot/Modules/Utility/LiveChannel/LiveChannelCommands.cs +++ b/src/EllieBot/Modules/Utility/LiveChannel/LiveChannelCommands.cs @@ -13,7 +13,7 @@ public partial class Utility [BotPerm(GuildPerm.ManageChannels)] public async Task LiveChAdd(IChannel channel, [Leftover] string template) { - if (!await svc.AddLiveChannelAsync(ctx.Guild.Id, channel, template)) + if (!await svc.AddLiveChannelAsync(ctx.Guild.Id, channel.Id, template)) { await Response() .Error(strs.livechannel_limit(LiveChannelService.MAX_LIVECHANNELS))