mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-08-26 05:56:34 -07:00
Stardew Valley: Fixed filler buffs only rolling one of each instead of as many as needed (#6293)
This commit is contained in:
@@ -27,5 +27,5 @@ def remove_already_included(items: Iterable[ItemData], already_added_items: set[
|
||||
return [
|
||||
item
|
||||
for item in items
|
||||
if item.name not in already_added_items or (item.has_any_group(*FILLER_GROUPS, Group.TRAP) and Group.MAXIMUM_ONE not in item.groups)
|
||||
if item.name not in already_added_items or (item.has_any_group(*FILLER_GROUPS, Group.TRAP, Group.PLAYER_BUFF) and Group.MAXIMUM_ONE not in item.groups)
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user