mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-04 14:53:51 +01:00
Bell can be activated by redstone
This commit is contained in:
parent
87bf3fdc0d
commit
965d10c003
@ -39,6 +39,10 @@ minetest.register_node("mcl_bells:bell", {
|
|||||||
_mcl_hardness = 5,
|
_mcl_hardness = 5,
|
||||||
on_rightclick = mcl_bells.ring_once,
|
on_rightclick = mcl_bells.ring_once,
|
||||||
use_texture_alpha = "clip",
|
use_texture_alpha = "clip",
|
||||||
|
mesecons = {effector = {
|
||||||
|
action_on = mcl_bells.ring_once,
|
||||||
|
rules = mesecon.rules.flat,
|
||||||
|
}},
|
||||||
})
|
})
|
||||||
|
|
||||||
if has_mcl_wip then
|
if has_mcl_wip then
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
name = mcl_bells
|
name = mcl_bells
|
||||||
|
depends = mesecons
|
||||||
optional_depends = mcl_wip
|
optional_depends = mcl_wip
|
Loading…
Reference in New Issue
Block a user