diff --git a/changelog.txt b/changelog.txt index b6dba76..92d4042 100644 --- a/changelog.txt +++ b/changelog.txt @@ -4,12 +4,12 @@ Date: 17.06.2022 Features: - added ingot former machine (fusion stage) - retextured rare metals - - added a compressed version of rich water + - added a compressed version of rich water and dirty water Changes: - changed map color of silo tank to that of normal storage tank - made electric furnace cheaper in terms of fiberglass r. plastic - - but increased titanium/neodymiumusage in science packs + - but increased titanium/neodymium usage in science packs Bugfixes: - fixed issue with K2 and rfp in overhaul mode diff --git a/migrations/248k-1.0.28.lua b/migrations/248k-1.0.28.lua new file mode 100644 index 0000000..d8f6781 --- /dev/null +++ b/migrations/248k-1.0.28.lua @@ -0,0 +1,5 @@ +for _, force in pairs(game.forces) do + force.reset_recipes() + force.reset_technologies() + force.reset_technology_effects() +end \ No newline at end of file diff --git a/prototypes/fusion/fu_ingot.lua b/prototypes/fusion/fu_ingot.lua index 6481ff4..287f1f5 100644 --- a/prototypes/fusion/fu_ingot.lua +++ b/prototypes/fusion/fu_ingot.lua @@ -130,24 +130,24 @@ data:extend({ filename = sprite('entity_animation.png'), size = {512,512}, scale = 0.54, - line_length = 2, - lines_per_file = 2, - frame_count = 4, - animation_speed = 0.2, + line_length = 3, + lines_per_file = 3, + frame_count = 9, + animation_speed = 0.1, shift = {0,-0.3} }, light = { type = "basic", intensity = 1, size = 15, - color = {r=0.79 ,g=0.08 ,b=0.87 }, + color = {r=0.78 ,g=0.5 ,b=0.09 }, } } }, working_sound = { sound = {filename = "__base__/sound/electric-furnace.ogg" }, - apparent_volume = 0.3, + apparent_volume = 0.1, }, }, })