summaryrefslogtreecommitdiff
path: root/mesecons_pistons
diff options
context:
space:
mode:
authorkhonkhortisan <khonkhortisan@gmail.com>2013-03-02 22:22:43 -0800
committerkhonkhortisan <khonkhortisan@gmail.com>2013-03-02 22:22:43 -0800
commitac23eb070a584cfde194b5f2e3425e0ef32a00fa (patch)
treef122d118912cdc50c0d4df103783b2034bd115f6 /mesecons_pistons
parente707afef1a4b6f8f9a7342e9c96d5b5ccb205f45 (diff)
downloadmesecons-ac23eb070a584cfde194b5f2e3425e0ef32a00fa.tar
mesecons-ac23eb070a584cfde194b5f2e3425e0ef32a00fa.tar.gz
mesecons-ac23eb070a584cfde194b5f2e3425e0ef32a00fa.tar.bz2
mesecons-ac23eb070a584cfde194b5f2e3425e0ef32a00fa.tar.xz
mesecons-ac23eb070a584cfde194b5f2e3425e0ef32a00fa.zip
Make vertical piston pusher selection boxes match their horizontal
equivalents
Diffstat (limited to 'mesecons_pistons')
-rw-r--r--mesecons_pistons/init.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesecons_pistons/init.lua b/mesecons_pistons/init.lua
index 08e4e3f..a6cb06c 100644
--- a/mesecons_pistons/init.lua
+++ b/mesecons_pistons/init.lua
@@ -276,8 +276,8 @@ minetest.register_node("mesecons_pistons:piston_pusher_sticky", {
local piston_up_pusher_box = {
type = "fixed",
fixed = {
- {-2/16, -.5 - pt, -2/16, 2/16, .5, 2/16},
- {-.5 , .5 - pt, -.5 , .5 , .5, .5},
+ {-2/16, -.5 - pt, -2/16, 2/16, .5 - pt, 2/16},
+ {-.5 , .5 - pt, -.5 , .5 , .5 , .5},
}
}
@@ -452,8 +452,8 @@ minetest.register_node("mesecons_pistons:piston_up_pusher_sticky", {
local piston_down_pusher_box = {
type = "fixed",
fixed = {
- {-2/16, -.5, -2/16, 2/16, .5 + pt, 2/16},
- {-.5 , -.5, -.5 , .5 , -.5 + pt, .5},
+ {-2/16, -.5 + pt, -2/16, 2/16, .5 + pt, 2/16},
+ {-.5 , -.5 , -.5 , .5 , -.5 + pt, .5},
}
}