mirror of
https://github.com/minetest-mods/mesecons.git
synced 2024-11-16 07:10:32 +01:00
Fix crafting with the default mesecon wire
This commit is contained in:
parent
a814abd1e0
commit
fc4d675b84
|
@ -199,8 +199,9 @@ register_wires = function()
|
||||||
offstate = "mesecons:wire_"..nodeid.."_off"
|
offstate = "mesecons:wire_"..nodeid.."_off"
|
||||||
}}
|
}}
|
||||||
|
|
||||||
local groups_on = {dig_immediate = 3, not_in_creative_inventory = 1}
|
local groups_on = {dig_immediate = 3, mesecon_conductor_craftable = 1,
|
||||||
local groups_off = {dig_immediate = 3}
|
not_in_creative_inventory = 1}
|
||||||
|
local groups_off = {dig_immediate = 3, mesecon_conductor_craftable = 1}
|
||||||
if nodeid ~= "00000000" then
|
if nodeid ~= "00000000" then
|
||||||
groups_off["not_in_creative_inventory"] = 1
|
groups_off["not_in_creative_inventory"] = 1
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user