From 6d4ae55f2f344af530a5cac1043cbaeab1c2b130 Mon Sep 17 00:00:00 2001 From: moonleay Date: Sun, 9 Feb 2025 21:30:36 +0100 Subject: [PATCH] fix: fixed command result showing when not supposed to --- ActiveCommand.cpp | 2 +- ListCommand.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ActiveCommand.cpp b/ActiveCommand.cpp index b413684..6a9a96b 100644 --- a/ActiveCommand.cpp +++ b/ActiveCommand.cpp @@ -8,7 +8,7 @@ using err::Error; namespace commands { - ActiveCommand::ActiveCommand() : SubCommand("active", 100, true) + ActiveCommand::ActiveCommand() : SubCommand("active", 100, false) { } diff --git a/ListCommand.cpp b/ListCommand.cpp index b43b6e7..7d88bfc 100644 --- a/ListCommand.cpp +++ b/ListCommand.cpp @@ -11,7 +11,7 @@ using err::Error; namespace commands { - ListCommand::ListCommand() : SubCommand("list", 100, true) + ListCommand::ListCommand() : SubCommand("list", 100, false) { }