From 65f2bbf6f7dd8c37d52100088b2192a8acace6ac Mon Sep 17 00:00:00 2001 From: FriendlyNamazu Date: Sat, 30 Aug 2025 21:30:10 +0200 Subject: [PATCH] removed intro agreement accept timer lol --- MareSynchronos/UI/IntroUI.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/MareSynchronos/UI/IntroUI.cs b/MareSynchronos/UI/IntroUI.cs index 39b3f36..4279cbb 100644 --- a/MareSynchronos/UI/IntroUI.cs +++ b/MareSynchronos/UI/IntroUI.cs @@ -84,18 +84,7 @@ public partial class IntroUi : WindowMediatorSubscriberBase if (ImGui.Button("Next##toAgreement")) { _readFirstPage = true; -#if !DEBUG - _timeoutTask = Task.Run(async () => - { - for (int i = 60; i > 0; i--) - { - _timeoutLabel = $"{Strings.ToS.ButtonWillBeAvailableIn} {i}s"; - await Task.Delay(TimeSpan.FromSeconds(1)).ConfigureAwait(false); - } - }); -#else _timeoutTask = Task.CompletedTask; -#endif } } else if (!_configService.Current.AcceptedAgreement && _readFirstPage)