diff --git a/Limestone2/changelog.txt b/Limestone2/changelog.txt index e62de8b..ae96e74 100644 --- a/Limestone2/changelog.txt +++ b/Limestone2/changelog.txt @@ -1,28 +1,10 @@ --------------------------------------------------------------------------------------------------- -Version: 0.2.1 -Date: 2024-07-28 - Features: - - Fixed dependencies with different types of mod lists. - - Added carbon dioxide as byproduct from calcium plate. - - Changed calcium plate to be able to smelt on surface and not just in space. +Version: 2.0.1 +Date: 11.10.2025 + Bug Fixes: + - Increase mod compatibility --------------------------------------------------------------------------------------------------- -Version: 0.2.0 -Date: 2024-06-28 +Version: 2.0.0 +Date: 10.10.2025 Features: - - Added calcium chloride. - - Changed calcium plate research. ---------------------------------------------------------------------------------------------------- -Version: 0.1.2 -Date: 2024-01-21 - Features: - - Removed old unused files. ---------------------------------------------------------------------------------------------------- -Version: 0.1.1 -Date: 2024-01-06 - Features: - - Added quicklime to steel plate. ---------------------------------------------------------------------------------------------------- -Version: 0.1.0 -Date: 2023-11-23 - Features: - - Alpha release. \ No newline at end of file + - Update to Factorio 2.0 \ No newline at end of file diff --git a/Limestone2/data-util.lua b/Limestone2/data-util.lua index 4b2d096..81def01 100644 --- a/Limestone2/data-util.lua +++ b/Limestone2/data-util.lua @@ -129,7 +129,7 @@ function util.se_matter(params) {"se-astronomic-science-pack-4", 1}, {"se-energy-science-pack-4", 1}, {"se-material-science-pack-4", 1}, - {"matter-tech-card", 1}, + {"kr-matter-tech-card", 1}, {"se-deep-space-science-pack-1", 1}, } }, diff --git a/Limestone2/info.json b/Limestone2/info.json index eb58148..a56bcb6 100644 --- a/Limestone2/info.json +++ b/Limestone2/info.json @@ -1,6 +1,6 @@ { "name": "Limestone2", - "version": "2.0.0", + "version": "2.0.1", "factorio_version": "2.0", "title": "Limestone", "author": "Timeken, cackling fiend", diff --git a/Limestone2/prototypes/calcium-recipe.lua b/Limestone2/prototypes/calcium-recipe.lua index d66f470..03da00c 100644 --- a/Limestone2/prototypes/calcium-recipe.lua +++ b/Limestone2/prototypes/calcium-recipe.lua @@ -33,7 +33,7 @@ data:extend({ { type = "recipe", name = "limestone-powder", - category = "crushing", + category = "kr-crushing", order = "l", enabled = false, energy_required = 1, @@ -63,7 +63,7 @@ data:extend({ enabled = false, energy_required = 16, ingredients = {{type="item", name="calcium-chloride", amount=10}, { type = "fluid", name = "water", amount = 200 }}, - results = {{ type = "fluid", name = "chlorine", amount = 100 }, { type = "fluid", name = "mineral-water", amount = 100 }}, + results = {{ type = "fluid", name = "kr-chlorine", amount = 100 }, { type = "fluid", name = "kr-mineral-water", amount = 100 }}, } }) util.add_productivity("limestone-powder") @@ -178,7 +178,7 @@ if (mods["Krastorio2"] and mods["space-exploration"]) or false then name = "bio-advanced-solar-panel", icons = { - { icon = "__Krastorio2Assets__/entities/advanced-solar-panel/advanced-solar-panel.png", icon_size = 128 }, + { icon = "__Krastorio2Assets__/buildings/advanced-solar-panel/advanced-solar-panel.png", icon_size = 128 }, { icon = "__Limestone2__/graphics/icons/organic-solar-cell.png", icon_size = 64, scale=0.2, shift= {-8, -8}}, }, category = "space-manufacturing", diff --git a/Limestone2/recipe-modify.lua b/Limestone2/recipe-modify.lua index 85a41bb..e8c2511 100644 --- a/Limestone2/recipe-modify.lua +++ b/Limestone2/recipe-modify.lua @@ -4,7 +4,7 @@ local util = require("data-util") util.add_ingredient("concrete", "quicklime", 10) -- Mod changes -util.remove_ingredient("concrete", "sand") +util.remove_ingredient("concrete", mods["Krastorio2"] and "kr-sand" or "sand") --Concret if mods["bzzirconium"] then