diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-13 01:19:02 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-02-13 01:19:02 -0500 |
commit | 845fbaab12a040464e403aa693a0eaaa9c55c9ae (patch) | |
tree | 88bfbd053d5ead2d6b8f6689607a51c096c04ca6 /src/StardewModdingAPI | |
parent | 0441d0843c65775bc72377e32ed4b3b5ee0b8f75 (diff) | |
download | SMAPI-845fbaab12a040464e403aa693a0eaaa9c55c9ae.tar.gz SMAPI-845fbaab12a040464e403aa693a0eaaa9c55c9ae.tar.bz2 SMAPI-845fbaab12a040464e403aa693a0eaaa9c55c9ae.zip |
migrate TrainerMod to new API (#199)
Diffstat (limited to 'src/StardewModdingAPI')
-rw-r--r-- | src/StardewModdingAPI/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/StardewModdingAPI/Program.cs b/src/StardewModdingAPI/Program.cs index ff0dff29..58b86e8f 100644 --- a/src/StardewModdingAPI/Program.cs +++ b/src/StardewModdingAPI/Program.cs @@ -578,7 +578,7 @@ namespace StardewModdingAPI if (result == null) Program.Monitor.Log("There's no command with that name.", LogLevel.Error); else - Program.Monitor.Log($"{result.Name}: {result.Documentation} [added by {result.ModName}]", LogLevel.Info); + Program.Monitor.Log($"{result.Name}: {result.Documentation}\n(Added by {result.ModName}.)", LogLevel.Info); } else Program.Monitor.Log("Commands: " + string.Join(", ", Program.CommandManager.GetAll().Select(p => p.Name)), LogLevel.Info); |