From 92284f7ce05c818f71a75c2fb7dac1846ba0e9ea Mon Sep 17 00:00:00 2001 From: protocol-1903 <67478786+protocol-1903@users.noreply.github.com> Date: Thu, 1 Jan 2026 22:31:15 -0700 Subject: [PATCH] Fixed that basic oxygen furnace mk02+ could not burn jerry cans as fuel. Resolves https://github.com/pyanodon/pybugreports/issues/1343 --- changelog.txt | 5 +++++ info.json | 2 +- prototypes/buildings/bof.lua | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 7d5e5026..548483b3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 3.0.26 +Date: ???? + Changes: + - Fixed that basic oxygen furnace mk02+ could not burn jerry cans as fuel. Resolves https://github.com/pyanodon/pybugreports/issues/1343 +--------------------------------------------------------------------------------------------------- Version: 3.0.25 Date: 2025-12-28 Changes: diff --git a/info.json b/info.json index 1f169e9b..985802e0 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "pyrawores", - "version": "3.0.25", + "version": "3.0.26", "factorio_version": "2.0", "title": "Pyanodons Raw Ores", "author": "Pyanodon, Nexela, Kingarthur, notnotmelon, Mootykins, ShadowGlass, Archezekiel, Quintuple, przemo1232", diff --git a/prototypes/buildings/bof.lua b/prototypes/buildings/bof.lua index 2cef3e22..56e21119 100644 --- a/prototypes/buildings/bof.lua +++ b/prototypes/buildings/bof.lua @@ -113,7 +113,7 @@ for i = 1, 4 do color = {0, 0, 0}, }, type = "burner", - fuel_categories = {"chemical", "biomass"}, + fuel_categories = {"chemical", "biomass", i > 1 and "jerry" or nil}, effectivity = 1, fuel_inventory_size = 1, burnt_inventory_size = 1,