From be0fffa4da2607d2db69b4be18b91611112001dc Mon Sep 17 00:00:00 2001 From: David <56174894+Constrat@users.noreply.github.com> Date: Wed, 13 Dec 2023 13:03:43 +0100 Subject: [PATCH] chore: added reclamation algorithm task to view --- src/MaaWpfGui/ViewModels/UI/TaskQueueViewModel.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/MaaWpfGui/ViewModels/UI/TaskQueueViewModel.cs b/src/MaaWpfGui/ViewModels/UI/TaskQueueViewModel.cs index 7e6007d476..47264163b7 100644 --- a/src/MaaWpfGui/ViewModels/UI/TaskQueueViewModel.cs +++ b/src/MaaWpfGui/ViewModels/UI/TaskQueueViewModel.cs @@ -367,9 +367,7 @@ namespace MaaWpfGui.ViewModels.UI // "ReclamationAlgorithm", }; var clientType = Instances.SettingsViewModel.ClientType; - // condition: clientType == "txwy" && DateTime.Now < new DateTime(2023, 01, 12) - // wait for someone to adapt this for txwy. - if (false) + if (clientType == "txwy" && DateTime.Now < new DateTime(2023, 01, 12)) { taskList.Add("ReclamationAlgorithm"); }