techage_modpack/towercrane/config.lua

24 lines
658 B
Lua
Raw Normal View History

2020-05-31 23:31:18 +03:00
--[[
Tower Crane Mod
===============
Copyright (C) 2017-2020 Joachim Stolberg
LGPLv2.1+
See LICENSE.txt for more information
]]--
-- Maximum crane height in blocks (8..n)
2021-05-14 19:50:16 +03:00
towercrane.max_height = tonumber(minetest.settings:get("towercrane_max_height")) or 32
2020-05-31 23:31:18 +03:00
-- Maximum crane width in blocks (8..n)
2021-05-14 19:50:16 +03:00
towercrane.max_width = tonumber(minetest.settings:get("towercrane_max_width")) or 32
2020-05-31 23:31:18 +03:00
-- Crane rope lenght in block (max_height .. max_height+x)
2021-05-14 19:50:16 +03:00
towercrane.rope_length = tonumber(minetest.settings:get("towercrane_rope_length")) or 40
2020-05-31 23:31:18 +03:00
-- Recipe available (true/false)
2021-05-14 19:50:16 +03:00
towercrane.recipe = tonumber(minetest.settings:get("towercrane_recipe")) or true