Skip to content

Commit

Permalink
Fix crafting with the default mesecon wire
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeija committed Nov 22, 2014
1 parent a814abd commit fc4d675
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mesecons/wires.lua
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,9 @@ register_wires = function()
offstate = "mesecons:wire_"..nodeid.."_off"
}}

local groups_on = {dig_immediate = 3, not_in_creative_inventory = 1}
local groups_off = {dig_immediate = 3}
local groups_on = {dig_immediate = 3, mesecon_conductor_craftable = 1,
not_in_creative_inventory = 1}
local groups_off = {dig_immediate = 3, mesecon_conductor_craftable = 1}
if nodeid ~= "00000000" then
groups_off["not_in_creative_inventory"] = 1
end
Expand Down

0 comments on commit fc4d675

Please sign in to comment.