Bell can be activated by redstone

This commit is contained in:
MysticTempest 2022-06-07 03:29:06 +02:00 committed by cora
parent 87bf3fdc0d
commit 965d10c003
2 changed files with 6 additions and 1 deletions

View File

@ -39,6 +39,10 @@ minetest.register_node("mcl_bells:bell", {
_mcl_hardness = 5,
on_rightclick = mcl_bells.ring_once,
use_texture_alpha = "clip",
mesecons = {effector = {
action_on = mcl_bells.ring_once,
rules = mesecon.rules.flat,
}},
})
if has_mcl_wip then

View File

@ -1,2 +1,3 @@
name = mcl_bells
optional_depends = mcl_wip
depends = mesecons
optional_depends = mcl_wip