From 7297318538d168548bfb94d77b427c694d336d03 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Tue, 23 Apr 2024 09:14:27 +0000 Subject: [PATCH] Fixed pagination emoji, closes #427 --- src/NadekoBot/_Extensions/IMessageChannelExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/_Extensions/IMessageChannelExtensions.cs b/src/NadekoBot/_Extensions/IMessageChannelExtensions.cs index 47cfcc114..ef7489280 100644 --- a/src/NadekoBot/_Extensions/IMessageChannelExtensions.cs +++ b/src/NadekoBot/_Extensions/IMessageChannelExtensions.cs @@ -167,8 +167,8 @@ public static class MessageChannelExtensions private const string BUTTON_LEFT = "BUTTON_LEFT"; private const string BUTTON_RIGHT = "BUTTON_RIGHT"; - private static readonly IEmote _arrowLeft = Emote.Parse("<:x:969658061805465651>"); - private static readonly IEmote _arrowRight = Emote.Parse("<:x:969658062220701746>"); + private static readonly IEmote _arrowLeft = Emote.Parse("<:x:1232256519844790302>"); + private static readonly IEmote _arrowRight = Emote.Parse("<:x:1232256515298295838>"); public static Task SendPaginatedConfirmAsync( this ICommandContext ctx,