diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-16 00:48:13 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-16 00:48:13 -0400 |
commit | df1d856cb00e8dbc6a6ef7a03990d943a7f3f4de (patch) | |
tree | 52cce8b8b184c8ae6fd5b4b91af697c131b5d6ff /src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player | |
parent | 47cfd6cd3d9a5f57be48a638bc8feca32006f7af (diff) | |
download | SMAPI-df1d856cb00e8dbc6a6ef7a03990d943a7f3f4de.tar.gz SMAPI-df1d856cb00e8dbc6a6ef7a03990d943a7f3f4de.tar.bz2 SMAPI-df1d856cb00e8dbc6a6ef7a03990d943a7f3f4de.zip |
fix typo in command help
Diffstat (limited to 'src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player')
-rw-r--r-- | src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetStyleCommand.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetStyleCommand.cs b/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetStyleCommand.cs index b59be2e5..31f4107d 100644 --- a/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetStyleCommand.cs +++ b/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/SetStyleCommand.cs @@ -1,4 +1,4 @@ -using StardewValley; +using StardewValley; namespace StardewModdingAPI.Mods.ConsoleCommands.Framework.Commands.Player { @@ -10,7 +10,7 @@ namespace StardewModdingAPI.Mods.ConsoleCommands.Framework.Commands.Player *********/ /// <summary>Construct an instance.</summary> public SetStyleCommand() - : base("player_changestyle", "Sets the style of a player feature.\n\nUsage: player_changecolor <target> <value>.\n- target: what to change (one of 'hair', 'shirt', 'skin', 'acc', 'shoe', 'swim', or 'gender').\n- value: the integer style ID.") { } + : base("player_changestyle", "Sets the style of a player feature.\n\nUsage: player_changestyle <target> <value>.\n- target: what to change (one of 'hair', 'shirt', 'skin', 'acc', 'shoe', 'swim', or 'gender').\n- value: the integer style ID.") { } /// <summary>Handle the command.</summary> /// <param name="monitor">Writes messages to the console and log file.</param> |