From 45bc2b690c0d7cce99ee7fe272b5d87759106984 Mon Sep 17 00:00:00 2001 From: Simon Weinberger Date: Wed, 31 Dec 2025 10:53:35 +0100 Subject: [PATCH] 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" },