Merge pull request #144 from Niklp09/converter_fix

Fix converter stores mesecon signals
This commit is contained in:
Joachim Stolberg 2023-09-17 13:48:20 +02:00 committed by GitHub
commit cb11941f30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -143,7 +143,7 @@ minetest.register_node("techage:ta3_mesecons_converter_on", {
mesecons = { mesecons = {
receptor = { receptor = {
state = mesecon.state.on, state = mesecon.state.off,
rules = mesecon.rules.default, rules = mesecon.rules.default,
}, },
effector = { effector = {
@ -164,7 +164,7 @@ minetest.register_node("techage:ta3_mesecons_converter_on", {
paramtype = "light", paramtype = "light",
light_source = 5, light_source = 5,
paramtype2 = "facedir", paramtype2 = "facedir",
groups = {choppy=2, cracky=2, crumbly=2}, groups = {choppy=2, cracky=2, crumbly=2, not_in_creative_inventory=1},
is_ground_content = false, is_ground_content = false,
sounds = default.node_sound_wood_defaults(), sounds = default.node_sound_wood_defaults(),
drop = "techage:ta3_mesecons_converter", drop = "techage:ta3_mesecons_converter",