From f5283915e19c444d0c77296c5ae8f9896cb00f92 Mon Sep 17 00:00:00 2001 From: FaceDeer Date: Wed, 15 Mar 2017 15:21:51 -0600 Subject: [PATCH] make lava punch through more things --- init.lua | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 72004a1..ebd7fd7 100644 --- a/init.lua +++ b/init.lua @@ -43,7 +43,26 @@ minetest.register_abm({ minetest.register_ore({ ore_type = "vein", ore = "default:lava_source", - wherein = "default:stone", + wherein = { + "default:stone", + "default:desert_stone", + "default:sandstone", + "default:sand", + "default:desert_sand", + "default:silver_sand", + "default:gravel", + "default:stone_with_coal", + "default:stone_with_iron", + "default:stone_with_copper", + "default:stone_with_gold", + "default:stone_with_diamond", + "default:dirt", + "default:dirt_with_grass", + "default:dirt_with_dry_grass", + "default:dirt_with_snow", + "default:cobble", + "default:mossycobble", + }, column_height_min = 2, column_height_max = 6, height_min = -31000,