Shortwave

by dorfl

Connect or separate circuit networks via shortwave radio channels.

Content
4 years ago
0.17 - 0.18
30
Circuit network

b error

4 years ago

Error while running event shortwave::on_gui_closed (ID 84)
Given entity doesn't exist anymore.
stack traceback:
shortwave/control.lua:144: in function 'radio_tune'
shortwave/control.lua:297: in function <shortwave/control.lua:294>
stack traceback:
[C]: in function 'connect_neighbour'
shortwave/control.lua:144: in function 'radio_tune'
shortwave/control.lua:297: in function <shortwave/control.lua:294>

3 years ago

I think (haven't tested) this should fix it:

Replace lines 144-147 in control.lua:

    link.connect_neighbour({
            wire = defines.wire_type.red,
            target_entity = relay,
    })

with this:

    if link then
        link.connect_neighbour({
            wire = defines.wire_type.red,
            target_entity = relay,
        })
    end

New response