From abf67d0ef5e8dcffcc2545134c79fb94e9341487 Mon Sep 17 00:00:00 2001 From: Sokomine Date: Sat, 13 Jan 2024 22:54:04 +0100 Subject: [PATCH] fix of crash --- snow_on_construct.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snow_on_construct.lua b/snow_on_construct.lua index 048f870..b72450d 100644 --- a/snow_on_construct.lua +++ b/snow_on_construct.lua @@ -186,7 +186,7 @@ moresnow.on_construct_select_shape = function( pos, falling_node_name, default_n -- in such a case it helps to drop the snow and let it fall until it hits something if( node2 and node2.name == 'air' ) then -- let the snow continue to fall - spawn_falling_node( {x=pos.x, y=pos.y-2, z=pos.z}, {name= default_name}) + moresnow.spawn_falling_node( {x=pos.x, y=pos.y-2, z=pos.z}, {name= default_name}) end return { remove_node = true}; end