Make air and ignore drop nothing

This commit is contained in:
PilzAdam 2012-11-03 18:29:01 +01:00 committed by Nils Dagsson Moskopp
parent ff098bc4bb
commit b646e953b6
Signed by: erle
GPG Key ID: A3BC671C35191080
1 changed files with 2 additions and 0 deletions

View File

@ -259,6 +259,7 @@ minetest.register_node(":air", {
diggable = false,
buildable_to = true,
air_equivalent = true,
drop = "",
groups = {not_in_creative_inventory=1},
})
@ -274,6 +275,7 @@ minetest.register_node(":ignore", {
diggable = false,
buildable_to = true, -- A way to remove accidentally placed ignores
air_equivalent = true,
drop = "",
groups = {not_in_creative_inventory=1},
})