mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-07-03 08:30:40 +02:00
almost done, mostly documentation left
This commit is contained in:
@ -1,21 +1,29 @@
|
||||
local s = minetest.settings
|
||||
|
||||
stairsplus.settings = {
|
||||
in_creative_inventory = s:get_bool("stairsplus.in_creative_inventory",
|
||||
s:get_bool("stairsplus_in_creative_inventory", false)
|
||||
),
|
||||
|
||||
recipes_in_creative_inventory = s:get_bool("stairsplus.recipes_in_creative_inventory",
|
||||
s:get_bool("stairsplus_in_creative_inventory", false)
|
||||
),
|
||||
|
||||
circular_saw_crafting = s:get_bool("stairsplus.circular_saw_crafting", true),
|
||||
ex_nihilo = s:get_bool("stairsplus.ex_nihilo",
|
||||
s:get_bool("creative_mode", false)
|
||||
),
|
||||
|
||||
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),
|
||||
|
||||
default_align_style = s:get("stairsplus.default_align_style") or "user",
|
||||
|
||||
basic_shapes = string.split(s:get("stairsplus.common_shapes") or table.concat({
|
||||
"micro_8", "slab_8", "stair", "stair_inner", "stair_outer",
|
||||
}, ","), ","),
|
||||
common_shapes = string.split(s:get("stairsplus.common_shapes") or table.concat({
|
||||
"micro_8", "panel_8", "slab_1", "slab_8", "stair", "stair_inner", "stair_outer",
|
||||
"slope", "slope_half", "slope_half_raised", "slope_inner", "slope_inner_cut", "slope_inner_half",
|
||||
"slope_inner_cut_half", "slope_inner_half_raised", "slope_inner_cut_half_raised", "slope_outer",
|
||||
"slope_outer_cut", "slope_cut", "slope_outer_half", "slope_outer_cut_half", "slope_outer_half_raised",
|
||||
"slope_outer_cut_half_raised",
|
||||
}, ","), ","),
|
||||
|
||||
legacy_mode = s:get_bool("stairsplus.legacy_mode", true),
|
||||
legacy_place_mechanic = s:get_bool("stairsplus.legacy_place_mechanic", true),
|
||||
}
|
||||
|
Reference in New Issue
Block a user