diff --git a/worlds/stardew_valley/items/filters.py b/worlds/stardew_valley/items/filters.py index cab7f6ff8dd..0794c8b5b6e 100644 --- a/worlds/stardew_valley/items/filters.py +++ b/worlds/stardew_valley/items/filters.py @@ -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) ]