From 494cf9447ee5e60f8018eb1da447a29a40b801b7 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Fri, 10 Feb 2017 13:03:15 +0100 Subject: [PATCH] Currency emoji issue fixed? --- src/NadekoBot/Services/Impl/ImagesService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NadekoBot/Services/Impl/ImagesService.cs b/src/NadekoBot/Services/Impl/ImagesService.cs index 02bcb1cd..77ee9f26 100644 --- a/src/NadekoBot/Services/Impl/ImagesService.cs +++ b/src/NadekoBot/Services/Impl/ImagesService.cs @@ -82,6 +82,7 @@ namespace NadekoBot.Services.Impl .ToImmutableArray(); SlotEmojis = Directory.GetFiles(slotEmojisPath) + .OrderBy(f => int.Parse(Path.GetFileNameWithoutExtension(f))) .Select(x => File.ReadAllBytes(x).ToImmutableArray()) .ToImmutableArray();