Disable experimental progressive mode by default
This commit is contained in:
parent
4a7d3485c4
commit
306c33b816
2 changed files with 4 additions and 4 deletions
|
@ -4,9 +4,9 @@ local craftguide, datas, mt = {}, {}, minetest
|
|||
-- Progressive Mode:
|
||||
-- true: Only show recipes which include at least one of the items the player posesses
|
||||
-- false: Show all crafting recipes
|
||||
local progressive_mode = true
|
||||
if mt.setting_getbool("craftguide_progressive_mode") == false then
|
||||
progressive_mode = false
|
||||
local progressive_mode = false
|
||||
if mt.setting_getbool("craftguide_progressive_mode") == true then
|
||||
progressive_mode = true
|
||||
end
|
||||
local get_recipe = mt.get_craft_recipe
|
||||
local get_result, show_formspec = mt.get_craft_result, mt.show_formspec
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue