Hi all can some one help me with this
I am trying to change emission [pollution] on stone furnace
right now i am using this
data.raw["furnace"]["stone-furnace"].crafting_speed = 0.6
data.raw["furnace"]["stone-furnace"].energy_usage = "110kW"
data.raw["furnace"]["stone-furnace"].emissions_per_minute = 3.5
while the speed and energy usage works, the emission_per_minute wont work.
Some help with data.raw
Re: Some help with data.raw
https://wiki.factorio.com/Prototype/Ent ... per_second
You can't change furnace emissions directly, they are based on power consumption.
You can't change furnace emissions directly, they are based on power consumption.
Re: Some help with data.raw
Yes you can, change it on the energy source: https://wiki.factorio.com/Types/EnergyS ... per_minuteDaveMcW wrote: Thu Sep 12, 2019 4:49 pm https://wiki.factorio.com/Prototype/Ent ... per_second
You can't change furnace emissions directly, they are based on power consumption.
data.raw["furnace"]["stone-furnace"].energy_source.emissions_per_minute = 3.5
I'm an admin over at https://wiki.factorio.com. Feel free to contact me if there's anything wrong (or right) with it.
Re: Some help with data.raw
sooo i should use....? now i am confusedBilka wrote: Thu Sep 12, 2019 5:00 pmYes you can, change it on the energy source: https://wiki.factorio.com/Types/EnergyS ... per_minuteDaveMcW wrote: Thu Sep 12, 2019 4:49 pm https://wiki.factorio.com/Prototype/Ent ... per_second
You can't change furnace emissions directly, they are based on power consumption.
data.raw["furnace"]["stone-furnace"].energy_source.emissions_per_minute = 3.5
Re: Some help with data.raw
What bilka put i correct. You need to change it inside the energy source table, not the furnace directly.dtoxic wrote: Thu Sep 12, 2019 5:07 pmsooo i should use....? now i am confusedBilka wrote: Thu Sep 12, 2019 5:00 pmDaveMcW wrote: Thu Sep 12, 2019 4:49 pm https://wiki.factorio.com/Prototype/Ent ... per_second
You can't change furnace emissions directly, they are based on power consumption.
Yes you can, change it on the energy source: https://wiki.factorio.com/Types/EnergyS ... per_minute
data.raw["furnace"]["stone-furnace"].energy_source.emissions_per_minute = 3.5
Re: Some help with data.raw
so instead using Emission per minute i should use "energy_source" correct? if so...if it put say 3.5 would that increase pollution by that much per minute or would it add to the already defined "2" in the demo-entities.luamat1k wrote: Thu Sep 12, 2019 6:18 pmWhat bilka put i correct. You need to change it inside the energy source table, not the furnace directly.dtoxic wrote: Thu Sep 12, 2019 5:07 pmsooo i should use....? now i am confusedBilka wrote: Thu Sep 12, 2019 5:00 pmDaveMcW wrote: Thu Sep 12, 2019 4:49 pm https://wiki.factorio.com/Prototype/Ent ... per_second
You can't change furnace emissions directly, they are based on power consumption.
Yes you can, change it on the energy source: https://wiki.factorio.com/Types/EnergyS ... per_minute
data.raw["furnace"]["stone-furnace"].energy_source.emissions_per_minute = 3.5
like i said in the op the first two entries work and are displayed in the tool tip, i just cant figure out what to do on the third one
P.S i forgot to mention i am doing this thru a mod not editing files directly
Re: Some help with data.raw
This line: data.raw["furnace"]["stone-furnace"].energy_source.emissions_per_minute = 3.5
Put in the mod will change the emission rate to 3.5 per second. It overrides the Original setting.
Put in the mod will change the emission rate to 3.5 per second. It overrides the Original setting.
Re: Some help with data.raw
Thx man appreciate it!mat1k wrote: Thu Sep 12, 2019 8:37 pm This line: data.raw["furnace"]["stone-furnace"].energy_source.emissions_per_minute = 3.5
Put in the mod will change the emission rate to 3.5 per second. It overrides the Original setting.