mirror of
https://github.com/APercy/airutils.git
synced 2025-03-15 08:01:22 +00:00
fix to remove traces of the my old biofuel mod
This commit is contained in:
parent
51402809a5
commit
393f993635
1 changed files with 16 additions and 0 deletions
|
@ -258,3 +258,19 @@ minetest.register_node( module_name .. ":biofuel_distiller", {
|
|||
end,
|
||||
})
|
||||
|
||||
|
||||
minetest.register_node(":".."biofuel:biofuel_distiller", {
|
||||
groups = {old_biofuel=1},
|
||||
})
|
||||
|
||||
minetest.register_abm({
|
||||
nodenames = {"group:old_biofuel"},
|
||||
interval = 1,
|
||||
chance = 1,
|
||||
action = function(pos, node)
|
||||
--minetest.env:remove_node(pos)
|
||||
minetest.env:swap_node(pos,{name = "airutils:biofuel_distiller"})
|
||||
end,
|
||||
})
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue