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 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" },