summaryrefslogtreecommitdiff
path: root/src/commands/command.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/command.hpp')
-rw-r--r--src/commands/command.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commands/command.hpp b/src/commands/command.hpp
index 922858e..345b821 100644
--- a/src/commands/command.hpp
+++ b/src/commands/command.hpp
@@ -20,6 +20,9 @@ namespace bot {
return schemas::PermissionLevel::USER;
}
virtual int get_delay_seconds() const { return 5; }
+ virtual std::vector<std::string> get_subcommand_ids() const {
+ return {};
+ }
};
class CommandLoader {