However, now I need to swap out this part of the code
Code: Select all
"burner":
{
"heat-capacity": 100,
"heat-loss": 0.01,
"heat-transport-speed": 0.005,
"burning-speed": 0.001,
"effectivity": 1000,
"fuel-inventory-size": 1,
"smoke":
[
{
"name": "smoke",
"frequency": 0.5,
"deviation": [0.1, 0.1],
"position": [0, -2.3]
}
]
},
Code: Select all
"energy-usage-per-tick": 1.5,
"effectivity": 1.5,
"energy-source":
{
"type": "electric",
"input-priority": "secondary"
},
Code: Select all
"energy-source":
{
"type": "burner",
"heat-capacity": 100,
"heat-loss": 0.01,
"heat-transport-speed": 0.005,
"burning-speed": 0.001,
"effectivity": 1000,
"fuel-inventory-size": 1,
"smoke":
[
{
"name": "smoke",
"frequency": 0.3,
"deviation": [0.1, 0.1]
}
]
},
Anybody got any helpful tips?