From: PilzAdam Date: Sat, 3 Nov 2012 17:29:01 +0000 (+0100) Subject: Make air and ignore drop nothing X-Git-Tag: 0.4.4~93^2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=refs%2Fpull%2F273%2Fhead;p=oweals%2Fminetest.git Make air and ignore drop nothing --- diff --git a/builtin/misc_register.lua b/builtin/misc_register.lua index 4894e71bc..77c594de2 100644 --- a/builtin/misc_register.lua +++ b/builtin/misc_register.lua @@ -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}, })