mirror of
https://github.com/minetest-mods/unified_inventory.git
synced 2025-07-07 02:40:27 +02:00
Added unified_inventory_enable_item_names
option
This commit is contained in:
5
init.lua
5
init.lua
@ -191,7 +191,8 @@ dofile(modpath.."/register.lua")
|
||||
if minetest.settings:get_bool("unified_inventory_bags") ~= false then
|
||||
dofile(modpath.."/bags.lua")
|
||||
end
|
||||
|
||||
dofile(modpath.."/item_names.lua")
|
||||
if minetest.settings:get_bool("unified_inventory_enable_item_names") == true then
|
||||
dofile(modpath.."/item_names.lua")
|
||||
end
|
||||
dofile(modpath.."/waypoints.lua")
|
||||
dofile(modpath.."/legacy.lua") -- mod compatibility
|
||||
|
@ -15,3 +15,5 @@ unified_inventory_hide_disabled_buttons (Hide disabled buttons) bool false
|
||||
|
||||
|
||||
unified_inventory_automatic_categorization (Items automatically added to categories) bool true
|
||||
|
||||
unified_inventory_enable_item_names (Item names are shown above hotbar) bool true
|
||||
|
Reference in New Issue
Block a user