i'm on 0.5.2 and i create a simple electric furnace mod.
In "entity.lua" i just added under
Code: Select all
...
type=burner
...
Code: Select all
...
type=electric
...
So it can work as a furnace and not as an assembly machine [/size]
The particularity of this furnace is that it has 2 input and 2 output slots. I was so happy when i see it works, but.... damn
i realize that only one slot per time is processed and not both together.
Question: how can i fix this "issue", if there's a way...
thanks
----- EDIT -----
i'm going crazy so i decided for a more deep search.
Here, https://forums.factorio.com/forum/vie ... slot#p2239 i found this:
in fact, it's exactly what's happening in my world. The thread is talking about of an assembly table, if i correctly translate, that craft an electronic circuit in other ways and with other materials.Turns out the furnace only uses the extra input as a buffer and starts smelting the ore in the first slot.
it's not the same what i'm going to do. i just want smelt ore from 2 slots together. don't care if the ores are the same or not (slot 1=iron - slot 2=copper OR slot 1=iron - slot 2=iron) because, theoretically, input slot 1 goes in output slot 1 and the same for in/out slot 2.
I hope I explained myself well enough in case, ask me
----- END EDIT -----