From 45bc2b690c0d7cce99ee7fe272b5d87759106984 Mon Sep 17 00:00:00 2001 From: Simon Weinberger Date: Wed, 31 Dec 2025 10:53:35 +0100 Subject: [PATCH 1/2] ignore looping arqad queen in production statistics --- prototypes/recipes/arqad/recipes-arqad-raising.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prototypes/recipes/arqad/recipes-arqad-raising.lua b/prototypes/recipes/arqad/recipes-arqad-raising.lua index 11f949313..90154de42 100644 --- a/prototypes/recipes/arqad/recipes-arqad-raising.lua +++ b/prototypes/recipes/arqad/recipes-arqad-raising.lua @@ -15,7 +15,7 @@ py.autorecipes { { ingredients = { - {name = "arqad-queen", amount = 1}, + {name = "arqad-queen", amount = 1, ignored_by_stats = 1}, {name = "arqad", amount = 5}, {name = "arqad-honey-barrel", amount = 3, return_barrel = true}, {name = "natural-gas-barrel", amount = 10, return_barrel = true}, @@ -24,7 +24,7 @@ py.autorecipes { results = { {name = "arqad-egg", amount = 10}, - {name = "arqad-queen", amount = 1, probability = 0.999, ignored_by_productivity = 1}, + {name = "arqad-queen", amount = 1, probability = 0.999, ignored_by_productivity = 1, ignored_by_stats = 1}, }, tech = "arqad" }, From 136d2c0d4d67003f668329d793ce0e084fd4decc Mon Sep 17 00:00:00 2001 From: protocol_1903 <67478786+protocol-1903@users.noreply.github.com> Date: Sun, 15 Feb 2026 20:47:02 -0700 Subject: [PATCH 2/2] update changelog --- changelog.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.txt b/changelog.txt index a0801b0b4..675c3e3c6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,7 @@ Version: 3.0.63 Date: ???? Changes: + - Fix arqad queen production statistics issues - Remove productivity watermark from botanical nursery recipes. Resolves https://github.com/pyanodon/pybugreports/issues/1360 - Allowed sea sponges mk02+ from sea sponge sprouts mk02+ to accept productivity. Resolves https://github.com/pyanodon/pybugreports/issues/1335 - Fixed cadaveric arum smart farm recipe 2 being the same as recipe 3. Resolves https://github.com/pyanodon/pybugreports/issues/1358