summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/command.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commands/command.hpp b/src/commands/command.hpp
index cd7e731..922858e 100644
--- a/src/commands/command.hpp
+++ b/src/commands/command.hpp
@@ -19,6 +19,7 @@ namespace bot {
virtual schemas::PermissionLevel get_permission_level() const {
return schemas::PermissionLevel::USER;
}
+ virtual int get_delay_seconds() const { return 5; }
};
class CommandLoader {