diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-14 20:10:39 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2016-11-14 20:10:39 -0500 |
commit | 6d1afe7d5c77703a605da713e228cd2e337ea8ac (patch) | |
tree | 901b5e222db54313a2aa740c84b1ec2fa30ab703 | |
parent | bff02ffd9b313a91243c95c2a5df0597391ef9f8 (diff) | |
download | SMAPI-6d1afe7d5c77703a605da713e228cd2e337ea8ac.tar.gz SMAPI-6d1afe7d5c77703a605da713e228cd2e337ea8ac.tar.bz2 SMAPI-6d1afe7d5c77703a605da713e228cd2e337ea8ac.zip |
remove obsolete TrainerMod command
-rw-r--r-- | src/TrainerMod/TrainerMod.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/TrainerMod/TrainerMod.cs b/src/TrainerMod/TrainerMod.cs index 1c1c3711..5df1a0aa 100644 --- a/src/TrainerMod/TrainerMod.cs +++ b/src/TrainerMod/TrainerMod.cs @@ -102,7 +102,6 @@ namespace TrainerMod Command.RegisterCommand("out_items", "Outputs a list of items | out_items", new[] { "" }).CommandFired += TrainerMod.HandleOutItems; Command.RegisterCommand("out_melee", "Outputs a list of melee weapons | out_melee", new[] { "" }).CommandFired += TrainerMod.HandleOutMelee; Command.RegisterCommand("out_rings", "Outputs a list of rings | out_rings", new[] { "" }).CommandFired += TrainerMod.HandleOutRings; - Command.RegisterCommand("newitem", "not to be used | newitem", new[] { "" }).CommandFired += TrainerMod.HandleNewItem; Command.RegisterCommand("world_settime", "Sets the time to the specified value | world_settime <value>", new[] { "(Int32)<value> The target time [06:00 AM is 600]" }).CommandFired += TrainerMod.HandleWorldSetTime; Command.RegisterCommand("world_freezetime", "Freezes or thaws time | world_freezetime <value>", new[] { "(0 - 1)<value> Whether or not to freeze time. 0 is thawed, 1 is frozen" }).CommandFired += TrainerMod.HandleWorldFreezeTime; @@ -727,11 +726,6 @@ namespace TrainerMod TrainerMod.LogValueNotSpecified(); } - /// <summary>The event raised when the 'newIteem' command is triggered.</summary> - /// <param name="sender">The event sender.</param> - /// <param name="e">The event arguments.</param> - private static void HandleNewItem(object sender, EventArgsCommand e) { } - /**** ** Logging ****/ |