summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeija <norrepli@googlemail.com>2012-08-09 23:31:02 -0700
committerJeija <norrepli@googlemail.com>2012-08-09 23:31:02 -0700
commit7e370d5377d429a986efe19acb5c33b22576e0fd (patch)
tree58f59a02b3639fb00cf6942171ff03b69be5089f
parent5c5db631a6afbbef413b89950246686f9ca0eac4 (diff)
parentb24cc2a14d2adbb5f23eae12e3572a72be4a7e62 (diff)
downloadmesecons-7e370d5377d429a986efe19acb5c33b22576e0fd.tar
mesecons-7e370d5377d429a986efe19acb5c33b22576e0fd.tar.gz
mesecons-7e370d5377d429a986efe19acb5c33b22576e0fd.tar.bz2
mesecons-7e370d5377d429a986efe19acb5c33b22576e0fd.tar.xz
mesecons-7e370d5377d429a986efe19acb5c33b22576e0fd.zip
Merge pull request #15 from VanessaE/master
pressure plates tweak
-rw-r--r--mesecons_pressureplates/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_pressureplates/init.lua b/mesecons_pressureplates/init.lua
index 89b917d..18128ec 100644
--- a/mesecons_pressureplates/init.lua
+++ b/mesecons_pressureplates/init.lua
@@ -32,7 +32,7 @@ minetest.register_node("mesecons_pressureplates:pressure_plate_wood_on", {
},
node_box = {
type = "fixed",
- fixed = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 },
+ fixed = { -7/16, -8/16, -7/16, 7/16, -31/64, 7/16 },
},
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,not_in_creative_inventory=1},
drop='"mesecons_pressureplates:pressure_plate_wood_off" 1',
@@ -114,7 +114,7 @@ minetest.register_node("mesecons_pressureplates:pressure_plate_stone_on", {
},
node_box = {
type = "fixed",
- fixed = { -7/16, -8/16, -7/16, 7/16, -7/16, 7/16 },
+ fixed = { -7/16, -8/16, -7/16, 7/16, -31/64, 7/16 },
},
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,not_in_creative_inventory=1},
drop='"mesecons_pressureplates:pressure_plate_stone_off" 1',