Added docs and replaced escape key with enter

This commit is contained in:
Mohammad Shoaib Khan
2022-08-12 16:37:39 +05:30
parent 4a1e4f9f4a
commit df192ee90c
10 changed files with 65 additions and 51 deletions

View File

@@ -39,6 +39,7 @@ namespace stardew_access
MainClass.DebugLog("Flooring is " + (MainClass.Config.ReadFlooring ? "on" : "off"));
});
#region Radar Feature
helper.ConsoleCommands.Add("radar", "Toggle radar feature.", (string commmand, string[] args) =>
{
MainClass.Config.Radar = !MainClass.Config.Radar;
@@ -47,7 +48,6 @@ namespace stardew_access
MainClass.DebugLog("Radar " + (MainClass.Config.Radar ? "on" : "off"));
});
#region Radar Feature
helper.ConsoleCommands.Add("rdebug", "Toggle debugging in radar feature.", (string commmand, string[] args) =>
{
MainClass.radarDebug = !MainClass.radarDebug;