From c1bfb19a1d01b9e32ead3509b74df141d6469341 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Thu, 24 Mar 2022 20:02:11 +0100 Subject: [PATCH] Fixed 'Features' output in .sinfo --- src/NadekoBot/Modules/Utility/Info/InfoCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Utility/Info/InfoCommands.cs b/src/NadekoBot/Modules/Utility/Info/InfoCommands.cs index 4b9e85761..25a9d3c2c 100644 --- a/src/NadekoBot/Modules/Utility/Info/InfoCommands.cs +++ b/src/NadekoBot/Modules/Utility/Info/InfoCommands.cs @@ -47,7 +47,7 @@ public partial class Utility var channels = $@"{GetText(strs.text_channels(textchn))} {GetText(strs.voice_channels(voicechn))}"; var createdAt = new DateTime(2015, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc).AddMilliseconds(guild.Id >> 22); - var features = string.Join(", ", guild.Features); + var features = guild.Features.Value.ToString(); if (string.IsNullOrWhiteSpace(features)) features = "-";