From ca57d10f7cea4e35afbbe8c946f5b574628aec3c Mon Sep 17 00:00:00 2001 From: Ske Date: Sat, 2 May 2020 14:25:28 +0200 Subject: [PATCH] Change formatting of shard number in status --- PluralKit.Bot/Bot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Bot.cs b/PluralKit.Bot/Bot.cs index e05d1d37..c28a2c23 100644 --- a/PluralKit.Bot/Bot.cs +++ b/PluralKit.Bot/Bot.cs @@ -121,7 +121,7 @@ namespace PluralKit.Bot try // DiscordClient may throw an exception if the socket is closed (e.g just after OP 7 received) { foreach (var c in _client.ShardClients.Values) - await c.UpdateStatusAsync(new DiscordActivity($"pk;help | in {totalGuilds} servers | Shard {c.ShardId}")); + await c.UpdateStatusAsync(new DiscordActivity($"pk;help | in {totalGuilds} servers | shard #{c.ShardId}")); } catch (WebSocketException) { }