Make air and ignore drop nothing
parent
41c00e87d4
commit
936411e4d1
|
@ -259,6 +259,7 @@ minetest.register_node(":air", {
|
||||||
diggable = false,
|
diggable = false,
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
air_equivalent = true,
|
air_equivalent = true,
|
||||||
|
drop = "",
|
||||||
groups = {not_in_creative_inventory=1},
|
groups = {not_in_creative_inventory=1},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -274,6 +275,7 @@ minetest.register_node(":ignore", {
|
||||||
diggable = false,
|
diggable = false,
|
||||||
buildable_to = true, -- A way to remove accidentally placed ignores
|
buildable_to = true, -- A way to remove accidentally placed ignores
|
||||||
air_equivalent = true,
|
air_equivalent = true,
|
||||||
|
drop = "",
|
||||||
groups = {not_in_creative_inventory=1},
|
groups = {not_in_creative_inventory=1},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue