diff --git a/DiscordBot/Program.cs b/DiscordBot/Program.cs index b0b087d..6e6a48b 100644 --- a/DiscordBot/Program.cs +++ b/DiscordBot/Program.cs @@ -220,6 +220,9 @@ public class Program if(newVersion != currentVersion) { Console.WriteLine("A new updated was found. Check the changelog for more information."); + List changeLog = await ServerCom.ReadTextFromURL(URLs["Changelog"]); + foreach (var item in changeLog) + Utilities.Utilities.WriteColorText(item); Console.WriteLine("Current version: " + currentVersion); Console.WriteLine("Latest version: " + newVersion);