Use right mouse button instead of left to press button and change state of switch and lever.

This commit is contained in:
Marcin
2015-10-01 19:13:12 +02:00
parent d95ccf86f8
commit 6e326a6a03
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ mesecon.register_node("mesecons_switch:mesecon_switch", {
paramtype2="facedir",
description="Switch",
sounds = default.node_sound_stone_defaults(),
on_punch = function (pos, node)
on_rightclick = function (pos, node)
if(mesecon.flipstate(pos, node) == "on") then
mesecon.receptor_on(pos)
else