From db9dfd2e5baf613db3e648111697c4ef132a8277 Mon Sep 17 00:00:00 2001 From: sneurlax Date: Thu, 19 Oct 2023 16:04:50 -0500 Subject: [PATCH] disable try again debugging --- lib/models/fusion_progress_ui_state.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/models/fusion_progress_ui_state.dart b/lib/models/fusion_progress_ui_state.dart index 78c32bead..b3ac92196 100644 --- a/lib/models/fusion_progress_ui_state.dart +++ b/lib/models/fusion_progress_ui_state.dart @@ -133,7 +133,7 @@ class FusionProgressUIState extends ChangeNotifier { /// Set from the interface. I didn't want to have to configure /// /// Used to be named maxConsecutiveFusionRoundsFailed. - bool _failed = true; + bool _failed = false; bool get failed => _failed; set failed(bool failed) { _failed = failed;