diff options
-rw-r--r-- | StardewModdingAPI/Command.cs | 2 | ||||
-rw-r--r-- | StardewModdingAPI/Constants.cs | 2 | ||||
-rw-r--r-- | TrainerMod/TrainerMod.csproj | 2 |
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>
|