From 6a272f3ee85173c5f5077a5ce4c20d4d7f13ecdc Mon Sep 17 00:00:00 2001 From: Kotolegokot Date: Sat, 27 Oct 2012 12:25:26 +0600 Subject: [PATCH] Drop of borax Now borax can be droped from stone. --- mods/default/init.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/mods/default/init.lua b/mods/default/init.lua index dfb115d..7e6aa94 100644 --- a/mods/default/init.lua +++ b/mods/default/init.lua @@ -529,7 +529,18 @@ minetest.register_node("default:stone", { tiles = {"default_stone.png"}, is_ground_content = true, groups = {cracky=3}, - drop = 'default:cobble', + drop = { + max_items = 1, + items = { + { + items = {'default:cobble', 'minerals:borax'}, + rarity = 50, + }, + { + items = {'default:cobble'} + }, + }, + }, legacy_mineral = true, sounds = default.node_sound_stone_defaults(), })