Skip to content

Commit

Permalink
fixed update url
Browse files Browse the repository at this point in the history
  • Loading branch information
craftycram committed Sep 18, 2020
1 parent 65ee7e2 commit 870a449
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MechanicBackup/EntryPoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public static void Main()
{
//Game.DisplayHelp("Hello World!");

Version currentVersion = new Version("1.0.0");
Version currentVersion = new Version("1.0.1");
Version newVersion = new Version();

Game.DisplayNotification("MechanicBackupPlugin " + currentVersion + " loaded successfully");
Expand All @@ -29,7 +29,7 @@ public static void Main()
{
try
{
string s = client.DownloadString("http://www.lcpdfr.com/applications/downloadsng/interface/api.php?do=checkForUpdates&fileId=29785&textOnly=1"); // <= CHANGE FILE ID!!!!
string s = client.DownloadString("http://www.lcpdfr.com/applications/downloadsng/interface/api.php?do=checkForUpdates&fileId=29789&textOnly=1"); // <= CHANGE FILE ID!!!!
newVersion = new Version(s);
}
Expand Down

0 comments on commit 870a449

Please sign in to comment.