From e208ad199cb4053978901fb6099ae721ab2d5503 Mon Sep 17 00:00:00 2001 From: Blockhead Date: Mon, 6 Mar 2023 22:30:44 +1100 Subject: [PATCH] Remove drops from tower crane nodes This prevents players from illegally obtaining those nodes through mods like digtron or the technic mining drill, at least in some instances. --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index 9271659..d74c1f5 100644 --- a/init.lua +++ b/init.lua @@ -341,6 +341,7 @@ minetest.register_node("towercrane:balance", { sunlight_propagates = true, is_ground_content = false, groups = {crumbly=0, not_in_creative_inventory=1}, + drop = "", }) minetest.register_node("towercrane:mast", { @@ -358,6 +359,7 @@ minetest.register_node("towercrane:mast", { sunlight_propagates = true, is_ground_content = false, groups = {crumbly=0, not_in_creative_inventory=1}, + drop = "", }) minetest.register_node("towercrane:arm", { @@ -375,6 +377,7 @@ minetest.register_node("towercrane:arm", { sunlight_propagates = true, is_ground_content = false, groups = {crumbly=0, not_in_creative_inventory=1}, + drop = "", }) minetest.register_node("towercrane:arm2", { @@ -392,6 +395,7 @@ minetest.register_node("towercrane:arm2", { sunlight_propagates = true, is_ground_content = false, groups = {crumbly=0, not_in_creative_inventory=1}, + drop = "", }) if towercrane.recipe then