summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClxS <slxxls92@gmail.com>2016-03-07 17:37:08 +0000
committerClxS <slxxls92@gmail.com>2016-03-07 17:37:08 +0000
commiteebbab0e1e955824128ff117351048913014a952 (patch)
treef1d4109ff125899b1c3ae47239da39f9bd15e246
parent0462c9de79a2f1a02e720ac24400d1bf00f74680 (diff)
downloadSMAPI-eebbab0e1e955824128ff117351048913014a952.tar.gz
SMAPI-eebbab0e1e955824128ff117351048913014a952.tar.bz2
SMAPI-eebbab0e1e955824128ff117351048913014a952.zip
Updated version, and stopped TrainerMod spamming the window with "Cyan"
-rw-r--r--StardewModdingAPI/Command.cs2
-rw-r--r--StardewModdingAPI/Constants.cs2
-rw-r--r--TrainerMod/TrainerMod.csproj2
3 files changed, 3 insertions, 3 deletions
diff --git a/StardewModdingAPI/Command.cs b/StardewModdingAPI/Command.cs
index 71a2483b..164263d6 100644
--- a/StardewModdingAPI/Command.cs
+++ b/StardewModdingAPI/Command.cs
@@ -62,7 +62,7 @@ namespace StardewModdingAPI
}
RegisteredCommands.Add(c);
- Log.Verbose(ConsoleColor.Cyan, "Registered command: " + command);
+ Log.Verbose("Registered command: " + command);
return c;
}
diff --git a/StardewModdingAPI/Constants.cs b/StardewModdingAPI/Constants.cs
index f8b913f7..b8fe3389 100644
--- a/StardewModdingAPI/Constants.cs
+++ b/StardewModdingAPI/Constants.cs
@@ -35,7 +35,7 @@ namespace StardewModdingAPI
public const int MinorVersion = 37;
- public const int PatchVersion = 1;
+ public const int PatchVersion = 2;
public const string Build = "Alpha";
diff --git a/TrainerMod/TrainerMod.csproj b/TrainerMod/TrainerMod.csproj
index 3cd42786..9c2f10a4 100644
--- a/TrainerMod/TrainerMod.csproj
+++ b/TrainerMod/TrainerMod.csproj
@@ -18,7 +18,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\StardewModdingAPI\bin\x86\Debug\Mods\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>