summaryrefslogtreecommitdiff
path: root/TrainerMod/TrainerMod.cs
diff options
context:
space:
mode:
authorZoryn <Zoryn4163@users.noreply.github.com>2016-03-22 20:58:00 -0400
committerZoryn <Zoryn4163@users.noreply.github.com>2016-03-22 20:58:00 -0400
commit7076886f2c229db8c06f41dd29aa0bf7ac966dc2 (patch)
treeb73219bf01b6afc25dbe26b761e5d4acc28773dd /TrainerMod/TrainerMod.cs
parent07773a380428c7b37f729e3b32fd7e7b960b360d (diff)
parent24e144d0f1aaae33fb51e80031259d0119acff7c (diff)
downloadSMAPI-7076886f2c229db8c06f41dd29aa0bf7ac966dc2.tar.gz
SMAPI-7076886f2c229db8c06f41dd29aa0bf7ac966dc2.tar.bz2
SMAPI-7076886f2c229db8c06f41dd29aa0bf7ac966dc2.zip
Merge pull request #50 from Zoryn4163/master
a lot
Diffstat (limited to 'TrainerMod/TrainerMod.cs')
-rw-r--r--TrainerMod/TrainerMod.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/TrainerMod/TrainerMod.cs b/TrainerMod/TrainerMod.cs
index bed66b21..0482606e 100644
--- a/TrainerMod/TrainerMod.cs
+++ b/TrainerMod/TrainerMod.cs
@@ -103,7 +103,7 @@ namespace TrainerMod
Command.RegisterCommand("out_items", "Outputs a list of items | out_items", new[] { "" }).CommandFired += out_items;
Command.RegisterCommand("out_melee", "Outputs a list of melee weapons | out_melee", new[] { "" }).CommandFired += out_melee;
Command.RegisterCommand("out_rings", "Outputs a list of rings | out_rings", new[] { "" }).CommandFired += out_rings;
- Command.RegisterCommand("newitem", "Outputs a list of melee weapons | out_melee", new[] { "" }).CommandFired += RegisterNewItem;
+ Command.RegisterCommand("newitem", "not to be used | newitem", new[] { "" }).CommandFired += RegisterNewItem;
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 += world_setTime;
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 += world_freezeTime;
@@ -135,6 +135,7 @@ namespace TrainerMod
static void load_CommandFired(object sender, EventArgsCommand e)
{
+ Game1.hasLoadedGame = false;
Game1.activeClickableMenu = new StardewValley.Menus.LoadGameMenu();
}