summaryrefslogtreecommitdiff
path: root/extranodes
diff options
context:
space:
mode:
Diffstat (limited to 'extranodes')
-rw-r--r--extranodes/lox.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/extranodes/lox.lua b/extranodes/lox.lua
index f3c7d00..08b2269 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", {
@@ -40,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}