mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-15 15:00:19 +01:00
8 lines
224 B
Lua
8 lines
224 B
Lua
|
local s = minetest.settings
|
||
|
|
||
|
invsaw.settings = {
|
||
|
priv = s:get("invsaw.priv") or "interact",
|
||
|
creative_priv = s:get("invsaw.creative_priv") or "creative",
|
||
|
saw_item = s:get("invsaw.saw_item") or "stairsplus:circular_saw"
|
||
|
}
|