summaryrefslogtreecommitdiff
path: root/StardewModdingAPI/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'StardewModdingAPI/Program.cs')
-rw-r--r--StardewModdingAPI/Program.cs8
1 files changed, 3 insertions, 5 deletions
diff --git a/StardewModdingAPI/Program.cs b/StardewModdingAPI/Program.cs
index da7df466..161ae9b2 100644
--- a/StardewModdingAPI/Program.cs
+++ b/StardewModdingAPI/Program.cs
@@ -36,9 +36,7 @@ namespace StardewModdingAPI
public static Thread gameThread;
public static Thread consoleInputThread;
-
- public const string Version = "0.36 Alpha";
-
+
public static bool StardewInjectorLoaded { get; private set; }
public static Mod StardewInjectorMod { get; private set; }
@@ -48,7 +46,7 @@ namespace StardewModdingAPI
{
Console.Title = "Stardew Modding API Console";
- Console.Title += " - Version " + Version;
+ Console.Title += " - Version " + Version.VersionString;
#if DEBUG
Console.Title += " - DEBUG IS NOT FALSE, AUTHOUR NEEDS TO REUPLOAD THIS VERSION";
#endif
@@ -189,7 +187,7 @@ namespace StardewModdingAPI
//Change the game's version
StardewModdingAPI.Log.Info("Injecting New SDV Version...");
- Game1.version += "-Z_MODDED | SMAPI " + Version;
+ Game1.version += "-Z_MODDED | SMAPI " + Version.VersionString;
//Create the thread for the game to run in.
gameThread = new Thread(RunGame);