Skip to content

Commit

Permalink
Add [vacuum] support (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
SwissalpS authored Dec 29, 2024
1 parent cbe1b09 commit bc79a70
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ local mods = {
"technic",
"technic_chests",
"technic_cnc",
"vacuum",
"vessels",
"xdecor",
}
Expand Down
1 change: 1 addition & 0 deletions mod.conf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ optional_depends = """
technic,
technic_chests,
technic_cnc,
vacuum,
vessels,
xdecor,
"""
Expand Down
13 changes: 13 additions & 0 deletions nodes/vacuum.lua
Original file line number Diff line number Diff line change
@@ -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,
},
})

0 comments on commit bc79a70

Please sign in to comment.