Skip to content

Commit 07200bc

Browse files
committedJun 16, 2024·
Changed Strawberry classification from useful to filler after reaching threshold.
1 parent 223cc00 commit 07200bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎worlds/celeste/progression.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,10 @@ def items(self, player: int, multiworld: MultiWorld) -> List[CelesteItem]:
218218
classification = ItemClassification.progression
219219
if item_type == CelesteItemType.STRAWBERRY:
220220
if strawberry_count >= required_strawberries:
221-
classification = ItemClassification.useful
221+
classification = ItemClassification.filler
222222
strawberry_count += 1
223223
elif level == self._goal_level() and side == self._goal_side() and item_type != CelesteItemType.COMPLETION:
224-
classification = ItemClassification.useful
224+
classification = ItemClassification.filler
225225

226226
item = CelesteItem(
227227
name=name,

0 commit comments

Comments
 (0)
Please sign in to comment.