Added command to refresh static tiles json

master
Mohammad Shoaib 2022-04-24 13:14:34 +05:30
parent 2a03fa6724
commit bafc966072
1 changed files with 7 additions and 0 deletions

View File

@ -480,6 +480,13 @@ namespace stardew_access
MainClass.DebugLog("Mod Config refreshed!"); MainClass.DebugLog("Mod Config refreshed!");
}); });
helper.ConsoleCommands.Add("refst", "Refresh static tiles", (string commmand, string[] args) =>
{
MainClass.STiles = new Features.StaticTiles();
MainClass.DebugLog("Static tiles refreshed!");
});
} }
} }
} }