mirror of
https://github.com/minetest-mods/hopper.git
synced 2024-11-20 06:13:54 +01:00
18 lines
587 B
Lua
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
|