diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-06-11 09:17:53 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-06-11 09:17:53 +0300 |
commit | 6c84730d8d1102c1cb7beea2da93bf869b17febc (patch) | |
tree | fc40d01898fe9dbad68e9f7e6ae443163711c712 /extranodes | |
parent | 2160ae40cda1b0e0febf528bcd2745bfc64f9589 (diff) |
paint does not block advtrains
Diffstat (limited to 'extranodes')
-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 } |