Skip to content
Snippets Groups Projects
Commit 755df5f6 authored by PilzAdam's avatar PilzAdam
Browse files

Merge pull request #273 from PilzAdam/air

Make air and ignore drop nothing
parents 41c00e87 936411e4
No related branches found
No related tags found
No related merge requests found
......@@ -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},
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment