diff options
| author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2012-08-10 17:35:54 -0400 | 
|---|---|---|
| committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2012-08-10 17:35:54 -0400 | 
| commit | 39db9cf01c9c681a5fbbd582aa917317c85de6de (patch) | |
| tree | 0be01bd02a09e728fb901f8150ab07ffbdf2891a /mesecons_noteblock | |
| parent | b0a038772285735444f8423d1685babe36ac5cb1 (diff) | |
Added "mesecon = 1" to the groups setting for most objects, so that they'll
visibly connect to neighboring wires.
Diffstat (limited to 'mesecons_noteblock')
| -rw-r--r-- | mesecons_noteblock/init.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/mesecons_noteblock/init.lua b/mesecons_noteblock/init.lua index 13666eb..63f094c 100644 --- a/mesecons_noteblock/init.lua +++ b/mesecons_noteblock/init.lua @@ -1,7 +1,7 @@  minetest.register_node("mesecons_noteblock:noteblock", {  	description = "Noteblock",  	tile_images = {"mesecons_noteblock.png"}, -	groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2}, +	groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2, mesecon = 1},  	drawtype = "allfaces_optional",  	visual_scale = 1.3,  	paramtype="light", | 
