Even though it's open source - I've added code so you can check for updates by me every time you debug it instead of reloading the release thread.
It will simply print the update message and the new download link.

Code:
public static void Initalize()
{
Console.ForegroundColor = ConsoleColor.DarkGreen;
Console.WriteLine(" Sierra is starting up!");
// Generate all data needed for the server
SierraEnvironment.CreateServerInstance();
String CheckUpdateWebsite = "localhost";
try
{
if (new WebClient().DownloadString(String.Concat("http://", CheckUpdateWebsite, "/has_sierra_update/index.php?checkupdate=checkupdate&version=" + sierraConfig.ReadString("this.current_version"))).Contains("Yes"))
{
String Response = new WebClient().DownloadString(String.Concat("http://", CheckUpdateWebsite, "/has_sierra_update/index.php?checkupdate=getmsg&version=" + sierraConfig.ReadString("this.current_version")));
{
Console.WriteLine();
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine(" A new update is avaliable!");
Console.ForegroundColor = ConsoleColor.Gray;
Console.Write(" New update message -> ");
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine(" " + Response);
Console.ForegroundColor = ConsoleColor.DarkGreen;
}
}
else
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine(" No new updates!");
Console.ForegroundColor = ConsoleColor.DarkGreen;
}
}
catch (Exception)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(" Could not contact the website.");
Console.ForegroundColor = ConsoleColor.DarkGreen;
}
Console.WriteLine(" Listening on port " + Port);
Console.WriteLine(" Sierra loaded with Revision 63 of Habbo.");
Console.ResetColor();
Console.WriteLine();
}

Originally Posted by
Casly
any updates.. havent seen any in a while now
Updates from a day ago is a while?