From df549c378daf2fc2a3dbc3e977565e4c6bb4578d Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 4 Sep 2019 17:21:49 +0200 Subject: [PATCH] No longer drop pearls, they're useless atm --- mods/default/nodes.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index dfc507a..df6236b 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -1116,14 +1116,16 @@ minetest.register_node( }, sunlight_propagates = true, walkable = false, - drop = { + -- TODO: Enable the drop code below, when the pearl is useful. + -- The pearl is currently useless. + --[[drop = { max_items = 3, items = { {items = {"default:clam"}, rarity = 1}, {items = {"default:pearl"}, rarity = 60}, {items = {"default:pearl"}, rarity = 20}, } - }, + },]] groups = {fleshy = 3, oddly_breakable_by_hand = 2, choppy = 3, attached_node = 1, food = 2}, on_use = minetest.item_eat({hp = 4, sat = 40}), sounds = default.node_sound_defaults(),