From b344b8ca4104dff2f497a9f36e17c3854bb87f35 Mon Sep 17 00:00:00 2001 From: alyssa Date: Sun, 5 Jan 2025 05:23:38 +0000 Subject: [PATCH] fix(bot): remove broken dev build info code --- PluralKit.Bot/Commands/Misc.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Commands/Misc.cs b/PluralKit.Bot/Commands/Misc.cs index 86614c1c..899c0ac6 100644 --- a/PluralKit.Bot/Commands/Misc.cs +++ b/PluralKit.Bot/Commands/Misc.cs @@ -67,7 +67,7 @@ public class Misc { var content = $"Stats unavailable (is scheduled_tasks service running?)\n\n**Quick info:**" + $"\nPluralKit [{BuildInfoService.Version}]()" - + (BuildInfoService.IsDev ? ", **development build**" : "") + // + (BuildInfoService.IsDev ? ", **development build**" : "") + $"\nCurrently on shard {ctx.ShardId}, {shardsUp}/{shards.Count()} shards up," + $" API latency: {apiLatency.TotalMilliseconds:F0}ms"; await ctx.Rest.EditMessage(msg.ChannelId, msg.Id, @@ -97,7 +97,7 @@ public class Misc var uptime = ((DateTimeOffset)process.StartTime).ToUnixTimeSeconds(); embed.Description($"### PluralKit [{BuildInfoService.Version}](https://github.com/pluralkit/pluralkit/commit/{BuildInfoService.FullVersion})\n" + $"Built on ()" - + (BuildInfoService.IsDev ? ", **development build**" : "") + // + (BuildInfoService.IsDev ? ", **development build**" : "") + $"\nLast restart: "); await ctx.Rest.EditMessage(msg.ChannelId, msg.Id,