From ac422ab8e30a13e5d61f6bc7779d0b34d4ca10f6 Mon Sep 17 00:00:00 2001 From: redleaf1221 Date: Tue, 21 Jan 2025 20:10:50 +0800 Subject: [PATCH] fix: /mission running not showing --- Command/Command/Cmd/CommandMission.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/Command/Cmd/CommandMission.cs b/Command/Command/Cmd/CommandMission.cs index eb7d5ae0..9a806561 100644 --- a/Command/Command/Cmd/CommandMission.cs +++ b/Command/Command/Cmd/CommandMission.cs @@ -82,7 +82,7 @@ public class CommandMission : ICommand value.Add(m.ID); } - if (arg.BasicArgs.Count == 1 && arg.BasicArgs[0] == "-all") + if ((arg.BasicArgs.Count == 1 && arg.BasicArgs[0] == "-all") || mission.Data.TrackingMainMissionId == 0) { //Show all the missions await ShowMissionList(mission, missionMap, arg);