mirror of
https://github.com/minetest-mods/unified_inventory.git
synced 2024-12-27 19:20:27 +01:00
Add setting to disable waypoints
This commit is contained in:
parent
380b77d0fb
commit
693ca112b8
4
init.lua
4
init.lua
@ -194,5 +194,7 @@ end
|
||||
if minetest.settings:get_bool("unified_inventory_item_names") ~= false then
|
||||
dofile(modpath.."/item_names.lua")
|
||||
end
|
||||
dofile(modpath.."/waypoints.lua")
|
||||
if minetest.settings:get_bool("unified_inventory_waypoints") ~= false then
|
||||
dofile(modpath.."/waypoints.lua")
|
||||
end
|
||||
dofile(modpath.."/legacy.lua") -- mod compatibility
|
||||
|
@ -10,6 +10,9 @@ unified_inventory_bags (Enable bags) bool true
|
||||
# have this slot shown in their inventory.
|
||||
unified_inventory_trash (Enable trash) bool true
|
||||
|
||||
# Provides waypoints on a per-player basis to remember positions on the map.
|
||||
unified_inventory_waypoints (Enable waypoints) bool true
|
||||
|
||||
# If enabled, disabled buttons will be hidden instead of grayed out.
|
||||
unified_inventory_hide_disabled_buttons (Hide disabled buttons) bool false
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user