diff --git a/hot-metals/changelog.txt b/hot-metals/changelog.txt index 8e660fd..ec74f4d 100644 --- a/hot-metals/changelog.txt +++ b/hot-metals/changelog.txt @@ -1,9 +1,4 @@ --------------------------------------------------------------------------------------------------- -Version: 1.2.11 -Date: 25.01.2026 - Bug Fixes: - - Fix item weights ---------------------------------------------------------------------------------------------------- Version: 1.2.10 Date: 04.11.2025 Changes: diff --git a/hot-metals/info.json b/hot-metals/info.json index 25b612f..77b988d 100644 --- a/hot-metals/info.json +++ b/hot-metals/info.json @@ -1,6 +1,6 @@ { "name": "hot-metals", - "version": "1.2.11", + "version": "1.2.10", "title": "Hot metals", "description": "A furnace doesn't just output cold usable results. You need to wait for them to cool down.", "author": "cackling fiend", @@ -8,8 +8,7 @@ "factorio_version": "2.0", "dependencies": [ "base", - "cf-lib >= 0.0.2", - "PlanetsLib >= 1.14.6" + "cf-lib >= 0.0.2" ], "spoiling_required": true } \ No newline at end of file diff --git a/hot-metals/prototypes/hot-metals.lua b/hot-metals/prototypes/hot-metals.lua index 48a2a24..4c7bec5 100644 --- a/hot-metals/prototypes/hot-metals.lua +++ b/hot-metals/prototypes/hot-metals.lua @@ -11,6 +11,7 @@ function createHotVariant(config) iconFolder = config.iconFolder or iconFolder end local item = data.raw.item[itemName] + item.weight = item.weight or 10000 -- Create new item local hotItem = table.deepcopy(data.raw.item[itemName])