diff options
author | Jeija <norrepli@gmail.com> | 2012-01-29 11:53:43 +0100 |
---|---|---|
committer | Jeija <norrepli@gmail.com> | 2012-01-29 11:53:43 +0100 |
commit | 2e1435898816d49a6820578c88b4d46ea8230465 (patch) | |
tree | 8c710fdd73bbed2935d31ebd256587ab6d244da7 /jeija/switch.lua | |
parent | 0dc5c85137989e0ee62f96fcec0f58c99c08de80 (diff) |
Add descriptions
Diffstat (limited to 'jeija/switch.lua')
-rw-r--r-- | jeija/switch.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/jeija/switch.lua b/jeija/switch.lua index 553c95f..aca1c86 100644 --- a/jeija/switch.lua +++ b/jeija/switch.lua @@ -4,6 +4,7 @@ minetest.register_node("jeija:mesecon_switch_off", { tile_images = {"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_off.png"}, paramtype2="facedir", material = minetest.digprop_constanttime(0.5), + description="Switch", }) minetest.register_node("jeija:mesecon_switch_on", { @@ -11,6 +12,7 @@ minetest.register_node("jeija:mesecon_switch_on", { paramtype2="facedir", material = minetest.digprop_constanttime(0.5), drop='"jeija:mesecon_switch_off" 1', + description="Switch", }) mesecon:add_receptor_node("jeija:mesecon_switch_on") |