From f1c1e084ec4304548255a9db76e143b0b71e8a56 Mon Sep 17 00:00:00 2001 From: wintersknight94 <62315647+wintersknight94@users.noreply.github.com> Date: Tue, 13 Apr 2021 17:42:54 -0500 Subject: [PATCH] nerfed rate of vulcanization --- vulcan.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vulcan.lua b/vulcan.lua index 1850183..c4fca92 100644 --- a/vulcan.lua +++ b/vulcan.lua @@ -13,8 +13,8 @@ nodecore.register_abm({ label = "Vulcanize Soil", nodenames = {"group:soil"}, neighbors = {"nc_terrain:lava_source", "nc_terrain:lava_flowing"}, - interval = 10, - chance = 1, + interval = 20, + chance = 2, action = function(pos) nodecore.set_loud(pos, {name = "nc_concrete:adobe"}) end @@ -25,8 +25,8 @@ nodecore.register_abm({ label = "Vulcanize Sand", nodenames = {"group:sand"}, neighbors = {"nc_terrain:lava_source", "nc_terrain:lava_flowing"}, - interval = 10, - chance = 1, + interval = 20, + chance = 2, action = function(pos) nodecore.set_loud(pos, {name = "nc_concrete:sandstone"}) end @@ -50,7 +50,7 @@ nodecore.register_abm({ nodenames = {"nc_tree:tree","nc_tree:root","nc_fire:coal8","group:mossy"}, neighbors = {"nc_terrain:lava_source", "nc_terrain:lava_flowing"}, interval = 10, - chance = 1, + chance = 2, action = function(pos) nodecore.set_loud(pos, {name = "nc_concrete:coalstone"}) end