fixing up explosions. Also make slade sand diggable in mcl, and fix a bug in web generators

This commit is contained in:
FaceDeer
2022-08-13 22:20:48 -06:00
parent de3e15e87b
commit c1bddb9ef7
7 changed files with 29 additions and 24 deletions

View File

@ -60,7 +60,7 @@ hunter_statue.register_hunter_statue = function(node_name, statue_def)
if statue_def.tnt_vulnerable then
def.on_blast = function(pos, intensity)
if intensity > 3.0 then
if intensity >= 1.0 then
minetest.set_node(pos, {name= statue_def.tnt_debris or "air"})
minetest.check_for_falling(pos)
end