2022-06-14 20:17:06 +02:00
|
|
|
local s = minetest.settings
|
|
|
|
|
2022-06-12 03:17:41 +02:00
|
|
|
stairsplus.settings = {
|
2022-06-14 20:17:06 +02:00
|
|
|
in_creative_inventory = s:get_bool("stairsplus.in_creative_inventory",
|
2022-06-17 02:46:09 +02:00
|
|
|
s:get_bool("stairsplus_in_creative_inventory", false)
|
2022-06-14 20:17:06 +02:00
|
|
|
),
|
2022-06-17 02:46:09 +02:00
|
|
|
|
|
|
|
recipes_in_creative_inventory = s:get_bool("stairsplus.recipes_in_creative_inventory",
|
|
|
|
s:get_bool("stairsplus_in_creative_inventory", false)
|
|
|
|
),
|
|
|
|
|
2022-06-14 20:17:06 +02:00
|
|
|
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)
|
2022-06-14 01:11:20 +02:00
|
|
|
),
|
|
|
|
|
2022-06-16 01:18:11 +02:00
|
|
|
default_align_style = s:get("stairsplus.default_align_style") or "user",
|
|
|
|
|
2022-06-14 20:17:06 +02:00
|
|
|
legacy_mode = s:get_bool("stairsplus.legacy_mode", true),
|
2022-06-16 01:18:11 +02:00
|
|
|
legacy_place_mechanic = s:get_bool("stairsplus.legacy_place_mechanic", true),
|
2022-06-12 03:17:41 +02:00
|
|
|
}
|