Skip to content

Commit

Permalink
Fix recipes that use stack filter inserters
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Jan 17, 2024
1 parent 0d2068c commit 1c80407
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Date: ?
- To smooth the endgame difficuly spike: Snarer hearts removed from perfect samples (now imperfect samples, ha) replaced with dingrit spikes.
- Snarer hearts added to utility science pack. Kevlar removed from utility science pack.
- Fixed that composter turd path 1 module bonus did not work. (https://github.com/pyanodon/pybugreports/issues/370)
- Stack filter inserters have been deleted. Removed stack filter inserters from sap turd path 2 recipe.
---------------------------------------------------------------------------------------------------
Version: 2.1.14
Date: 2024-1-10
Expand Down
4 changes: 2 additions & 2 deletions prototypes/upgrades/sap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ if data and not yafc_turd_integration then
ingredients = {
{type = 'item', name = 'bhoddos', amount = 1},
{type = 'fluid', name = 'dirty-water-heavy', amount = 30},
{type = 'item', name = 'stack-filter-inserter', amount = 1},
{type = 'item', name = 'stack-inserter', amount = 1},
},
results = {
{type = 'item', name = 'resveratrol', amount_min = 1, amount_max = 3},
{type = 'item', name = 'stack-filter-inserter', amount = 1, probability = 0.999},
{type = 'item', name = 'stack-inserter', amount = 1, probability = 0.999},
},
main_product = 'resveratrol'
}}
Expand Down

0 comments on commit 1c80407

Please sign in to comment.