From c38d3d3b30d761d470fddf67fc85c3442e197fda Mon Sep 17 00:00:00 2001 From: PilzAdam Date: Sun, 9 Sep 2012 15:36:59 +0200 Subject: [PATCH] Destroy nodes from the top to the bottom so falling nodes cant fall before they are destroyed --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 6e2939d..4d9a55f 100644 --- a/init.lua +++ b/init.lua @@ -66,7 +66,7 @@ boom = function(pos, time) for dx=-2,2 do for dz=-2,2 do - for dy=-2,2 do + for dy=2,-2,-1 do pos.x = pos.x+dx pos.y = pos.y+dy pos.z = pos.z+dz