From 492177287f96114ed4420d49145b4a43226a8602 Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Thu, 19 Apr 2018 15:58:53 +0100 Subject: [PATCH] add more random blocks to wishing well --- schems.lua | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/schems.lua b/schems.lua index 5c94c89..5c1e6a1 100644 --- a/schems.lua +++ b/schems.lua @@ -183,7 +183,7 @@ minetest.register_abm({ label = "Lucky Block Wishing Well Block", nodenames = {"lucky_block:well_block"}, - interval = 4.0, + interval = 2.0, chance = 1, catch_up = false, @@ -202,12 +202,24 @@ minetest.register_abm({ }) local blocks = { + {"default:ice", 7}, + {"default:bronzeblock", 5}, {"default:coalblock", 5}, + {"default:sand", 7}, {"default:goldblock", 5}, + {"default:cactus", 7}, + {"default:cobble", 7}, {"default:brick", 8}, + {"default:desert_sand", 7}, + {"default:obsidian", 7}, {"default:diamondblock", 4}, + {"default:dirt", 7}, + {"default:clay", 7}, + {"default:copperblock", 5}, {"default:mese", 5}, + {"default:silver_sand", 7}, {"default:snowblock", 7}, + {"default:mossycobble", 7}, } local tot = #blocks @@ -215,6 +227,8 @@ minetest.register_abm({ tot = tot + 1 blocks[tot] = {"tnt:tnt_burning", 8} tot = tot + 1 + blocks[tot] = {"tnt:tnt_burning", 4} + tot = tot + 1 blocks[tot] = {"tnt:tnt_burning", 8} end