stairsplus.in_craft_guide config defaults to true now

This commit is contained in:
flux 2022-09-22 13:06:00 -07:00
parent 6e16c54cc3
commit 16c72b1aa3
No known key found for this signature in database
GPG Key ID: 9333B27816848A15
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ stairsplus.ex_nihilo (Saw gives infinite nodes) bool false
stairsplus.in_creative_inventory (Display Stairs+ nodes in creative inventory) bool true
# Whether to show crafting recipes involving Stairs+ nodes (in compatible inventory managers)
stairsplus.in_craft_guide (Show crafting recipes) bool false
stairsplus.in_craft_guide (Show crafting recipes) bool true
# "user" or "world" cause things to look nicer in general, but some nodes look better w/ the "node" style
stairsplus.default_align_style (World align style) enum user node,user,world

View File

@ -9,7 +9,7 @@ stairsplus.settings = {
in_creative_inventory = s:get_bool("stairsplus.in_creative_inventory",
s:get_bool("moreblocks.stairsplus_in_creative_inventory", true)
),
in_craft_guide = s:get_bool("stairsplus.in_craft_guide", false),
in_craft_guide = s:get_bool("stairsplus.in_craft_guide", true),
default_align_style = s:get("stairsplus.default_align_style") or "user",