diff --git a/src/assets/ba_data/python/bascenev1lib/activity/coopscore.py b/src/assets/ba_data/python/bascenev1lib/activity/coopscore.py index 21ae486b..7b1bc9a7 100644 --- a/src/assets/ba_data/python/bascenev1lib/activity/coopscore.py +++ b/src/assets/ba_data/python/bascenev1lib/activity/coopscore.py @@ -125,7 +125,7 @@ class CoopScoreScreen(bs.Activity[bs.Player, bs.Team]): self._tournament_time_remaining: float | None = None self._tournament_time_remaining_text: Text | None = None self._tournament_time_remaining_text_timer: bs.BaseTimer | None = None - self._submit_score = self.session._submit_score + self._submit_score = self.session.submit_score # Stuff for activity skip by pressing button self._birth_time = bs.time() diff --git a/src/assets/ba_data/python/bauiv1lib/tournamententry.py b/src/assets/ba_data/python/bauiv1lib/tournamententry.py index 36aa14a4..010b2c8c 100644 --- a/src/assets/ba_data/python/bauiv1lib/tournamententry.py +++ b/src/assets/ba_data/python/bauiv1lib/tournamententry.py @@ -14,7 +14,6 @@ import bauiv1 as bui if TYPE_CHECKING: from typing import Any, Callable - from bascenev1lib.activity.coopscore import CoopScoreScreen import bascenev1 as bs @@ -90,9 +89,7 @@ class TournamentEntryWindow(PopupWindow): # Show the practice button as long as we're not # restarting while on a paid tournament run. - self._do_practice = self._tournament_activity is None or isinstance( - self._tournament_activity, CoopScoreScreen - ) + self._do_practice = self._tournament_activity is None off_p = 0 if not self._do_practice else 48 self._height += off_p * 0.933