From 7ad3b3c7c436d07a1398de40b5e92a3ff2c739ac Mon Sep 17 00:00:00 2001 From: h-v-smacker Date: Mon, 16 Apr 2018 16:15:21 +0300 Subject: fixes --- extranodes/lox.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'extranodes/lox.lua') diff --git a/extranodes/lox.lua b/extranodes/lox.lua index f3c7d00..0d27a4d 100644 --- a/extranodes/lox.lua +++ b/extranodes/lox.lua @@ -9,6 +9,8 @@ local freezing_rules = { ["default:lava_flowing"] = "default:stone", ["fire:basic_flame"] = "air", ["default:dirt"] = "default:dirt_with_snow", + ["ethereal:fiery_dirt"] = "default:dirt_with_snow", + ["ethereal:mushroom_dirt"] = "default:dirt_with_snow", } minetest.register_craftitem(":technic:lox", { -- cgit v1.2.3 From 823565a3984b06c50974a3577f6ed79b9006df0c Mon Sep 17 00:00:00 2001 From: h-v-smacker Date: Tue, 17 Apr 2018 16:44:11 +0300 Subject: Moar renewable stuff --- extranodes/lox.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extranodes/lox.lua') diff --git a/extranodes/lox.lua b/extranodes/lox.lua index 0d27a4d..08b2269 100644 --- a/extranodes/lox.lua +++ b/extranodes/lox.lua @@ -42,7 +42,7 @@ minetest.register_craftitem(":technic:lox", { local loc = {} local wrk = false - for y=0,2,1 do + for y=0,3,1 do for x=-2,2,1 do for z = -2,2,1 do loc = {x = pos.x - x, y = pos.y - y, z = pos.z - z} -- cgit v1.2.3