From 676e876392330ed2079694bb23143b99d75d059f Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Fri, 7 Jun 2024 22:18:36 +0200 Subject: [PATCH] This is actually just slower lol --- worlds/yachtdice/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/yachtdice/__init__.py b/worlds/yachtdice/__init__.py index cf541c9f59..9bcabd9dcf 100644 --- a/worlds/yachtdice/__init__.py +++ b/worlds/yachtdice/__init__.py @@ -399,14 +399,14 @@ class YachtDiceWorld(World): def collect(self, state: CollectionState, item: Item) -> bool: change = super().collect(state, item) - if change and item.advancement: + if change: state.prog_items[self.player]["state_is_fresh"] = 0 return change def remove(self, state: CollectionState, item: Item) -> bool: change = super().remove(state, item) - if change and item.advancement: + if change: state.prog_items[self.player]["state_is_fresh"] = 0 return change