We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0496fc commit c8bccecCopy full SHA for c8bccec
init.lua
@@ -117,8 +117,14 @@ minetest.register_alias("pipeworks:pipe", "pipeworks:pipe_110000_empty")
117
118
if minetest.get_modpath("unified_inventory") and unified_inventory.registered_categories then
119
if not unified_inventory.registered_categories["automation"] then
120
+ local symbol
121
+ if pipeworks.enable_lua_tube then
122
+ symbol = "pipeworks:lua_tube000000"
123
+ else
124
+ symbol = "pipeworks:mese_filter" -- fallback when lua tube isn't registered
125
+ end
126
unified_inventory.register_category("automation", {
- symbol = "pipeworks:lua_tube000000",
127
+ symbol = symbol,
128
label = "Automation components"
129
})
130
end
0 commit comments