Skip to content

Commit

Permalink
Merge 'Fix Plentiful item pool with no adult trade items selected' (O…
Browse files Browse the repository at this point in the history
  • Loading branch information
fenhl committed Apr 3, 2024
2 parents 61b88a3 + 1fc2b20 commit 2bdaa46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ItemPool.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def get_pool_core(world: World) -> tuple[list[str], dict[str, Item]]:
# Make the duplicate item consistent with that.
if 'Pocket Egg' in world.settings.adult_trade_start and 'Pocket Cucco' in world.settings.adult_trade_start:
pending_junk_pool.remove('Pocket Cucco')
else:
elif world.settings.adult_trade_start:
# With adult trade shuffle off, add a random extra adult trade item
item = random.choice(world.settings.adult_trade_start)
pending_junk_pool.append(item)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ issue. You should always Hard Reset to avoid this issue entirely.
* Fix missing visual frost effect for ice traps in most chests.
* Fix the items on the right side of the mask shop being available without paying for all borrowed masks first.
* The Stone of Agony can now be foolish in Glitched Logic and No Logic, as it already was with the `Hidden Grottos without Stone of Agony` trick enabled.
* Fix seeds with Plentiful item pool and no adult trade items selected failing to generate.

#### Other Changes
* Clarified the error message shown when an unshuffled trade quest item is used as a starting item.
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '8.1.15'
__version__ = '8.1.16'

# This is a supplemental version number for branches based off of main dev.
supplementary_version = 0
Expand Down

0 comments on commit 2bdaa46

Please sign in to comment.