From 5e2360000163f7649100a72c3da69b49a6521993 Mon Sep 17 00:00:00 2001 From: Jean-Patrick Guerrero Date: Thu, 16 Apr 2020 03:57:29 +0200 Subject: [PATCH] Wording --- init.lua | 1 + settingtypes.txt | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index c9ac215..cf25cd3 100644 --- a/init.lua +++ b/init.lua @@ -234,6 +234,7 @@ local function table_eq(T1, T2) local function recurse(t1, t2) if type(t1) ~= type(t2) then return end + if not is_table(t1) then return t1 == t2 end diff --git a/settingtypes.txt b/settingtypes.txt index 4e4b4b1..c0e64c8 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -5,7 +5,8 @@ craftguide_progressive_mode (Learn crafting recipes progressively) bool fa craftguide_sfinv_only (Crafting Guide in inventory only) bool false # Enable pre-caching of item recipes. -# Disabling it will result in faster game loading but lesser in-game efficiency. -# If you enable or disable mods, or edit the current mod recipes in your game, you should re-enable the cache, -# otherwise some recipes will be skipped or removed. Usage at your own risk. +# Do NOT disable the first time the mod loads. +# Disabling the auto-caching will result in faster mod loading. +# If you enable or disable mods, or edit the current mod recipes in your setup, you SHOULD re-enable this setting until the next caching at least. +# Usage at your own risk. craftguide_autocache (Auto-caching of recipes) bool true