mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 14:53:45 +01:00
Merge pull request #273 from PilzAdam/air
Make air and ignore drop nothing
This commit is contained in:
commit
755df5f659
@ -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},
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user