summaryrefslogtreecommitdiff
path: root/mesecons_temperest
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-09 21:35:34 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2012-08-09 21:35:34 -0400
commit368a7c1eda56891ec5f7e673d19c4eeea67ea2f8 (patch)
tree076b8e1eca333d7e5a8c54943004be832e79222e /mesecons_temperest
parent6d0e2b04c6f32bf0d3e371a7262ec2e6ae2f42cc (diff)
downloadmesecons-368a7c1eda56891ec5f7e673d19c4eeea67ea2f8.tar
mesecons-368a7c1eda56891ec5f7e673d19c4eeea67ea2f8.tar.gz
mesecons-368a7c1eda56891ec5f7e673d19c4eeea67ea2f8.tar.bz2
mesecons-368a7c1eda56891ec5f7e673d19c4eeea67ea2f8.tar.xz
mesecons-368a7c1eda56891ec5f7e673d19c4eeea67ea2f8.zip
thickened up pressure plates slightly for consistency
Diffstat (limited to 'mesecons_temperest')
-rw-r--r--mesecons_temperest/init.lua22
1 files changed, 11 insertions, 11 deletions
diff --git a/mesecons_temperest/init.lua b/mesecons_temperest/init.lua
index bacc5f9..a0ec5c0 100644
--- a/mesecons_temperest/init.lua
+++ b/mesecons_temperest/init.lua
@@ -109,11 +109,11 @@ minetest.register_node("mesecons_temperest:mesecon_plug", {
walkable = false,
selection_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
node_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
description = "Plug",
after_place_node = plug_off,
@@ -143,11 +143,11 @@ minetest.register_node("mesecons_temperest:mesecon_socket_off", {
walkable = false,
selection_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
node_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
})
@@ -160,11 +160,11 @@ minetest.register_node("mesecons_temperest:mesecon_socket_on", {
walkable = false,
selection_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
node_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
drop='"mesecons_temperest:mesecon_socket_off" 1',
after_dig_node = function(pos)
@@ -195,11 +195,11 @@ if ENABLE_TEMPEREST then
walkable = false,
selection_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
node_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
drop='"mesecons_temperest:mesecon_inverter_on" 1',
})
@@ -216,11 +216,11 @@ if ENABLE_TEMPEREST then
walkable = false,
selection_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
node_box = {
type = "fixed",
- fixed = {-0.5, -0.5, -0.5, 0.5, -0.45, 0.5},
+ fixed = { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 },
},
after_place_node = function(pos)
mesecon:receptor_on(pos)
@@ -241,4 +241,4 @@ if ENABLE_TEMPEREST then
{'"mesecons:mesecon_off"', '"default:steel_ingot"', '"mesecons:mesecon_off"'},
}
})
-end \ No newline at end of file
+end