Crafter/mods/hopper/config.lua
2020-03-24 19:54:19 -04:00

18 lines
587 B
Lua

hopper.config = {}
-- settings
hopper.config.texture_resolution = minetest.settings:get("hopper_texture_size")
if hopper.config.texture_resolution == nil then
hopper.config.texture_resolution = "16"
end
hopper.config.single_craftable_item = minetest.settings:get_bool("hopper_single_craftable_item")
if hopper.config.single_craftable_item == nil then
hopper.config.single_craftable_item = true
end
hopper.config.eject_button_enabled = minetest.settings:get_bool("hopper_eject_button")
if hopper.config.eject_button_enabled == nil then
hopper.config.eject_button_enabled = true
end