diff --git a/README.md b/README.md index 7443979..de9e633 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,9 @@ Factorio Mod which adds a double furnace to the game. A double furnace looks similar to an electric furnace (but it's green) and it can smelt iron ore directly to steel (but can't smelt anything else). +# Installation from Factorio Mod Portal +Please go to https://mods.factorio.com/mod/DoubleFurnace + # Installation from GitHub Download the zip from GitHub and unzip it in your Factorio mods folder. The unpacked folder will most probably have the name "DoubleFurnace-master". @@ -14,6 +17,9 @@ GNU GPLv3 # Changelog +## 0.2.0 +- Update to Factorio 0.17 + ## 0.1.9 - Reduced pollution (still higher than original Electric Furnace) @@ -43,3 +49,4 @@ GNU GPLv3 ## 0.1.0 - First version + diff --git a/info.json b/info.json index 496051c..2e937bd 100644 --- a/info.json +++ b/info.json @@ -1,12 +1,12 @@ { "name": "DoubleFurnace", - "version": "0.1.9", + "version": "0.2.0", "title": "Double Furnace", "author": "raid", "contact": "mod@hackmate.de", "homepage": "https://mods.factorio.com/mods/raid/DoubleFurnace", - "factorio_version": "0.16", - "dependencies": ["base >= 0.16.0"], + "factorio_version": "0.17", + "dependencies": ["base >= 0.17.0"], "description": "Add a Double Furnace, which smelts iron ore directly to steel." } diff --git a/prototypes/entity.lua b/prototypes/entity.lua index 11b9807..7a3dc3e 100644 --- a/prototypes/entity.lua +++ b/prototypes/entity.lua @@ -36,12 +36,12 @@ data:extend({ vehicle_impact_sound = { filename = "__base__/sound/car-metal-impact.ogg", volume = 0.65 }, working_sound = { sound = { - filename = "__base__/sound/electric-furnace.ogg", - volume = 0.7 + filename = "__base__/sound/electric-furnace.ogg", -- same sound + volume = 0.8 -- but louder ;) }, apparent_volume = 1.5 }, - animation = { + animation = { -- pretty much the same as electric-furnace, just other graphics layers = { { filename = "__DoubleFurnace__/graphics/entity/double-furnace/double-furnace-base.png", @@ -81,7 +81,7 @@ data:extend({ } } }, - working_visualisations = { + working_visualisations = { -- pretty much the same as electric-furnace, just other graphics { animation = { filename = "__DoubleFurnace__/graphics/entity/double-furnace/double-furnace-heater.png", diff --git a/prototypes/item.lua b/prototypes/item.lua index ae0d322..f2349c0 100644 --- a/prototypes/item.lua +++ b/prototypes/item.lua @@ -6,7 +6,6 @@ data:extend({ name = "double-furnace", icon = "__DoubleFurnace__/graphics/icons/double-furnace.png", icon_size = 32, - flags = {"goes-to-quickbar"}, subgroup = "smelting-machine", order = "d[double-furnace]", place_result = "double-furnace", diff --git a/prototypes/technology.lua b/prototypes/technology.lua index bb54185..d3d1a7e 100644 --- a/prototypes/technology.lua +++ b/prototypes/technology.lua @@ -15,13 +15,13 @@ data:extend({ unit = { count = 100, ingredients = { - {"science-pack-1", 1}, - {"science-pack-2", 1}, - {"science-pack-3", 1}, + {"automation-science-pack", 1}, -- the old "science-pack-1" + {"logistic-science-pack", 1}, -- the old "science-pack-2" + {"production-science-pack", 1}, -- this just makes sense for a furnace }, time = 30 }, - order = "c-c-b-a" + order = "c-c-b-a" -- advanced-material-processing-2 has "c-c-b", so this should be alright } })