From eabced5d60c48b9e8ee4a2bd5f18e79bad4fa778 Mon Sep 17 00:00:00 2001 From: agilbert1412 Date: Fri, 21 Aug 2026 17:50:14 -0400 Subject: [PATCH] Stardew Valley: Fixed filler buffs only rolling one of each instead of as many as needed (#6293) --- worlds/stardew_valley/items/filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ]