diff options
author | Dan Volchek <volchek2@illinois.edu> | 2018-04-16 00:42:57 -0500 |
---|---|---|
committer | Dan Volchek <volchek2@illinois.edu> | 2018-04-16 00:42:57 -0500 |
commit | a6e1ea0a4f87c621edc74d789eb76ce70893b5d1 (patch) | |
tree | 817b82c7223be4b6f0028dc157aefc013ceaf129 /src/SMAPI.Mods.ConsoleCommands/Framework/Commands | |
parent | 7f4941167e58f27f43b073db2e37d14b7fee2543 (diff) | |
download | SMAPI-a6e1ea0a4f87c621edc74d789eb76ce70893b5d1.tar.gz SMAPI-a6e1ea0a4f87c621edc74d789eb76ce70893b5d1.tar.bz2 SMAPI-a6e1ea0a4f87c621edc74d789eb76ce70893b5d1.zip |
fix private method comment location
Diffstat (limited to 'src/SMAPI.Mods.ConsoleCommands/Framework/Commands')
-rw-r--r-- | src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/AddCommand.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/AddCommand.cs b/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/AddCommand.cs index 09b9585c..6c48d8df 100644 --- a/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/AddCommand.cs +++ b/src/SMAPI.Mods.ConsoleCommands/Framework/Commands/Player/AddCommand.cs @@ -65,6 +65,10 @@ namespace StardewModdingAPI.Mods.ConsoleCommands.Framework.Commands.Player monitor.Log($"OK, added {match.Name} ({match.Type} #{match.ID}) to your inventory.", LogLevel.Info); } + /********* + ** Private methods + *********/ + /// <summary> /// Finds a matching item by item type and id. /// </summary> @@ -128,9 +132,6 @@ namespace StardewModdingAPI.Mods.ConsoleCommands.Framework.Commands.Player } } - /********* - ** Private methods - *********/ private static string GetDescription() { string[] typeValues = Enum.GetNames(typeof(ItemType)); |