diff --git a/CompatBot/Commands/CompatList.cs b/CompatBot/Commands/CompatList.cs index 52889ef7..2d1bbbbb 100644 --- a/CompatBot/Commands/CompatList.cs +++ b/CompatBot/Commands/CompatList.cs @@ -194,6 +194,10 @@ public static async Task CheckForRpcs3Updates(DiscordClient discordClient, await channel.SendMessageAsync(embed: embed.Build()).ConfigureAwait(false); else if (emptyBotMsg != null) { + if (embed.Color == Config.Colors.Maintenance) + return false; + + Config.Log.Debug($"Restoring update announcement for build {sinceCommit}: {embed.Title}\n{embed.Description}"); await emptyBotMsg.ModifyAsync(embed: embed.Build()).ConfigureAwait(false); return true; }