migrations + burner fixes
This commit is contained in:
parent
9742971bd2
commit
e132d723a8
3 changed files with 9 additions and 4 deletions
|
@ -233,7 +233,7 @@ fu_ki_circuit_fluid=KI3 energy
|
||||||
[item-description]
|
[item-description]
|
||||||
el_solar_item=Made with some knowledge.
|
el_solar_item=Made with some knowledge.
|
||||||
el_burner_item=A compact burner generator.
|
el_burner_item=A compact burner generator.
|
||||||
fu_burner_item=Can destroy every item. Can vent oxygen, water and turn steam back into water.
|
fu_burner_item=Can destroy every item. Can vent oxygen, water and turn steam back into water. Can not handle nuclear waste.
|
||||||
el_energy_crystal_item=This crystal is made of a unknown substance. It radiates a little bit of energy, but what could it be used for?
|
el_energy_crystal_item=This crystal is made of a unknown substance. It radiates a little bit of energy, but what could it be used for?
|
||||||
|
|
||||||
fi_solid_reactor_item=A water moderated nuclear fission reactor capable of producing large amounts of heat. The consumed fuel rods can be refined and used again!
|
fi_solid_reactor_item=A water moderated nuclear fission reactor capable of producing large amounts of heat. The consumed fuel rods can be refined and used again!
|
||||||
|
@ -539,13 +539,13 @@ el_water_generator_power_output=Water turbine output
|
||||||
el_solar_recipe_enabled=Solar panel 2.0 recipe enabled
|
el_solar_recipe_enabled=Solar panel 2.0 recipe enabled
|
||||||
el_ki_beacon_effectivity=KI1 beacon effectivity
|
el_ki_beacon_effectivity=KI1 beacon effectivity
|
||||||
el_ki_beacon_supply_area=KI1 beacon area
|
el_ki_beacon_supply_area=KI1 beacon area
|
||||||
el_ki_beacon_blueprintable=Make the KI beacons blueprintable
|
el_ki_beacon_blueprintable=Make KI beacons blueprintable
|
||||||
el_ki_core_energy_usage=KI1 core power usage
|
el_ki_core_energy_usage=KI1 core power usage
|
||||||
el_ki_core_energy_usage_input=KI1 core power input maximum
|
el_ki_core_energy_usage_input=KI1 core power input maximum
|
||||||
el_ki_core_productivity=Enable [color=orange]productivity [/color]modules in KI core and amplifier
|
el_ki_core_productivity=Enable [color=orange]productivity [/color]modules in KI core and amplifier
|
||||||
el_burner_kerosene_power_output=Kerosene generator power output
|
el_burner_kerosene_power_output=Kerosene generator power output
|
||||||
override_krastorio_endgame=Adjust Krastorio2 recipes for Anti-matter reactor, Intergalactic transreciever.
|
override_krastorio_endgame=Adjust Krastorio2 recipes for Anti-matter reactor, Intergalactic transreciever.
|
||||||
overhaul_mode=Enable Overaul mode.
|
overhaul_mode=Enable [color=#880fb4]Overaul [/color]mode.
|
||||||
overhaul_realistic_reactors=Integrate Realistic Reactors in 248k.
|
overhaul_realistic_reactors=Integrate Realistic Reactors in 248k.
|
||||||
|
|
||||||
el_ki_beacon_effectivity_2=KI2 beacon effectivity
|
el_ki_beacon_effectivity_2=KI2 beacon effectivity
|
||||||
|
|
5
migrations/248k-1.0.10.lua
Normal file
5
migrations/248k-1.0.10.lua
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
for _, force in pairs(game.forces) do
|
||||||
|
force.reset_recipes()
|
||||||
|
force.reset_technologies()
|
||||||
|
force.reset_technology_effects()
|
||||||
|
end
|
|
@ -31,7 +31,7 @@ end
|
||||||
function burner_recipe_generator()
|
function burner_recipe_generator()
|
||||||
local items = data.raw.item
|
local items = data.raw.item
|
||||||
for i,v in pairs(items) do
|
for i,v in pairs(items) do
|
||||||
if not data.raw.item[i].name == "fi_materials_waste" then
|
if not (data.raw.item[i].name == "fi_materials_waste") then
|
||||||
make_burner_recipe(data.raw.item[i].name)
|
make_burner_recipe(data.raw.item[i].name)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue