This commit is contained in:
Jean-Patrick Guerrero 2020-04-16 03:57:29 +02:00
parent f39ca50f3b
commit 5e23600001
2 changed files with 5 additions and 3 deletions

View File

@ -234,6 +234,7 @@ local function table_eq(T1, T2)
local function recurse(t1, t2) local function recurse(t1, t2)
if type(t1) ~= type(t2) then return end if type(t1) ~= type(t2) then return end
if not is_table(t1) then if not is_table(t1) then
return t1 == t2 return t1 == t2
end end

View File

@ -5,7 +5,8 @@ craftguide_progressive_mode (Learn crafting recipes progressively) bool fa
craftguide_sfinv_only (Crafting Guide in inventory only) bool false craftguide_sfinv_only (Crafting Guide in inventory only) bool false
# Enable pre-caching of item recipes. # Enable pre-caching of item recipes.
# Disabling it will result in faster game loading but lesser in-game efficiency. # Do NOT disable the first time the mod loads.
# If you enable or disable mods, or edit the current mod recipes in your game, you should re-enable the cache, # Disabling the auto-caching will result in faster mod loading.
# otherwise some recipes will be skipped or removed. Usage at your own risk. # 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 craftguide_autocache (Auto-caching of recipes) bool true