Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions prototypes/recipes/arqad/recipes-arqad-raising.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand All @@ -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"
},
Expand Down