From 23b3ad5837985b8b44702b5658c3585f0bc7da20 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 * Version upped to 4.3.22 --- CHANGELOG.md | 11 ++++++++++- src/NadekoBot/Services/Impl/StatsService.cs | 2 +- .../_Extensions/IMessageChannelExtensions.cs | 4 ++-- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6b61c707..7b95b0b79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,16 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o -## [4.3.21] +## [4.3.22] - 23.04.2023 + +### Added +- Added `.setbanner` command (thx cata) + +### Fixed +- Fixed pagination error due to a missing emoji + + +## [4.3.21] - 19.04.2023 ### Fixed - Possible fix for a duplicate in `.h bank` diff --git a/src/NadekoBot/Services/Impl/StatsService.cs b/src/NadekoBot/Services/Impl/StatsService.cs index 44dbd239e..534860aea 100644 --- a/src/NadekoBot/Services/Impl/StatsService.cs +++ b/src/NadekoBot/Services/Impl/StatsService.cs @@ -7,7 +7,7 @@ namespace NadekoBot.Services; public sealed class StatsService : IStatsService, IReadyExecutor, INService { - public const string BOT_VERSION = "4.3.21"; + public const string BOT_VERSION = "4.3.22"; public string Author => "Kwoth#2452"; 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,