diff --git a/init.lua b/init.lua index 1357bf2..bff072b 100644 --- a/init.lua +++ b/init.lua @@ -46,6 +46,7 @@ local mods = { "technic", "technic_chests", "technic_cnc", + "vacuum", "vessels", "xdecor", } diff --git a/mod.conf b/mod.conf index c84c353..af7011a 100644 --- a/mod.conf +++ b/mod.conf @@ -25,6 +25,7 @@ optional_depends = """ technic, technic_chests, technic_cnc, + vacuum, vessels, xdecor, """ diff --git a/nodes/vacuum.lua b/nodes/vacuum.lua new file mode 100644 index 0000000..1e19380 --- /dev/null +++ b/nodes/vacuum.lua @@ -0,0 +1,13 @@ + +-- Register wrench support for the vacuum mod + +wrench.register_node("vacuum:airpump", { + lists = { "main" }, + metas = { + enabled = wrench.META_TYPE_INT, + formspec = wrench.META_TYPE_IGNORE, + infotext = wrench.META_TYPE_IGNORE, + owner = wrench.META_TYPE_STRING, + }, +}) +