diff options
author | root <root@mirzakhani.gpcf.eu> | 2018-06-20 18:05:58 +0200 |
---|---|---|
committer | root <root@mirzakhani.gpcf.eu> | 2018-06-20 18:05:58 +0200 |
commit | 39ba8bae5e294ef7d74e7a47df5cbd833c7b7a60 (patch) | |
tree | bbf292e70dffb2fb66cace63880ae45ed68e7198 /extranodes/antishroom.lua | |
parent | c029cd5a9897102c4c9eeb7e30336e6ae78e81a8 (diff) | |
parent | faa4be7f6ae82b08aba51c1d32305e17236bf160 (diff) |
Merge https://github.com/h-v-smacker/technic
Diffstat (limited to 'extranodes/antishroom.lua')
-rw-r--r-- | extranodes/antishroom.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extranodes/antishroom.lua b/extranodes/antishroom.lua index e3259c1..38168eb 100644 --- a/extranodes/antishroom.lua +++ b/extranodes/antishroom.lua @@ -18,14 +18,14 @@ minetest.register_craftitem(":technic:antishroom",{ if target and target.name == "ethereal:mushroom_dirt" then local start_pos = { - x = pos.x - 10, - z = pos.z - 10, + x = pos.x - 16, + z = pos.z - 16, y = pos.y - 5 } local end_pos = { - x = pos.x + 10, - z = pos.z + 10, + x = pos.x + 16, + z = pos.z + 16, y = pos.y + 15 } |