diff options
author | root <root@mirzakhani.gpcf.eu> | 2018-04-18 14:59:24 +0200 |
---|---|---|
committer | root <root@mirzakhani.gpcf.eu> | 2018-04-18 14:59:24 +0200 |
commit | 1a93eef46fcb66d7d4d08b091bdb16c113188652 (patch) | |
tree | 78cc6898e9b8cd5ac0f10319a8bb11b0e4df1719 /extranodes | |
parent | b19fa017bd6bba6621ca71902ccb8aebd6d0f69b (diff) | |
parent | a98859bdd7ca4f902d977f47f1d2281487e9e242 (diff) |
Merge https://github.com/h-v-smacker/technic
Diffstat (limited to 'extranodes')
-rw-r--r-- | extranodes/lox.lua | 4 |
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} |