edit changelog + migrations

This commit is contained in:
PreLeyZero 2022-04-06 00:11:50 +02:00
parent 3e4dc007fe
commit 8b90fca36d
2 changed files with 16 additions and 3 deletions

View file

@ -1,14 +1,14 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 1.0.7 Version: 1.0.7
Date: 5.4.2022 Date: 6.4.2022
Features: Features:
- added pipe covers for most machines - added pipe covers for most machines
- added more inputs to KI cores to improve symetry - added more inputs to KI cores to improve symetry
- added new simple kerosene recipe in Overhaul mode, without lightoil - added new simple kerosene recipe in Overhaul mode, without lightoil
- added korean locale by x2605 - added korean locale by x2605
Changes: Changes:
- removed squeak trough dependency - removed squeak through dependency
- shifted current kerosene recipe to advanced oil processing
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 1.0.6 Version: 1.0.6
Date: 3.4.2022 Date: 3.4.2022

13
migrations/248k-1.0.7.lua Normal file
View file

@ -0,0 +1,13 @@
if settings.startup['overhaul_mode'].value == false then
game.print("You are currently playing 248k on standalone Mode.", {r=0.5, g=0, b=0.5})
game.print("If you wish to play 248k as an overhaul mod with tech and item integration, especially in Krastorio2 turn on the mod setting", {r=0.5, g=0, b=0.5})
elseif settings.startup['overhaul_mode'].value == true then
game.print("You are currently playing 248k on overhaul Mode.", {r=0.5, g=0, b=0.5})
game.print("If you wish to play 248k as an standalone mod without tech and item integration turn off the mod setting", {r=0.5, g=0, b=0.5})
end
for _, force in pairs(game.forces) do
force.reset_recipes()
force.reset_technologies()
force.reset_technology_effects()
end