diff options
author | James Finlay <jtfinlay@ualberta.ca> | 2016-03-06 12:51:22 -0800 |
---|---|---|
committer | James Finlay <jtfinlay@ualberta.ca> | 2016-03-06 12:51:22 -0800 |
commit | 04abcec53c132e6871782d7d6b860a9679113275 (patch) | |
tree | e34e6a072aae551205c9b4750a596adb9e634aaa /StardewModdingAPI | |
parent | ac8b73898597a8999e4e03445306d163d4fbcd19 (diff) | |
download | SMAPI-04abcec53c132e6871782d7d6b860a9679113275.tar.gz SMAPI-04abcec53c132e6871782d7d6b860a9679113275.tar.bz2 SMAPI-04abcec53c132e6871782d7d6b860a9679113275.zip |
Quick fixes
Diffstat (limited to 'StardewModdingAPI')
-rw-r--r-- | StardewModdingAPI/Program.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/StardewModdingAPI/Program.cs b/StardewModdingAPI/Program.cs index 9767c1b4..af845440 100644 --- a/StardewModdingAPI/Program.cs +++ b/StardewModdingAPI/Program.cs @@ -77,7 +77,6 @@ namespace StardewModdingAPI { Console.Title = _consoleTitle;
- Console.Title += " - Version " + Version.VersionString;
#if DEBUG Console.Title += " - DEBUG IS NOT FALSE, AUTHOUR NEEDS TO REUPLOAD THIS VERSION";
#endif
@@ -107,13 +106,11 @@ namespace StardewModdingAPI StardewModdingAPI.Log.Initialize(LogPath);
- StardewModdingAPI.Log.Verbose(LogPath);
-
if (!File.Exists(ExecutionPath + "\\Stardew Valley.exe"))
{ throw new FileNotFoundException(string.Format("Could not found: {0}\\Stardew Valley.exe", ExecutionPath));
- } } + } /// <summary>
/// Load the injector.
@@ -271,7 +268,7 @@ namespace StardewModdingAPI StardewModdingAPI.Log.Verbose("Game Loaded"); Events.GameEvents.InvokeGameLoaded(); - StardewModdingAPI.Log.Comment(ConsoleColor.Cyan, "Type 'help' for help, or 'help <cmd>' for a command's usage");
+ StardewModdingAPI.Log.Comment("Type 'help' for help, or 'help <cmd>' for a command's usage");
//Begin listening to input consoleInputThread.Start(); |