diff options
| author | ilotterytea <iltsu@alright.party> | 2024-05-01 17:21:13 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-05-01 17:21:13 +0500 |
| commit | 34fa75f64c8cdfa72fe9cd9cf04daca7c37446ec (patch) | |
| tree | 5288a8d42d49af69007700b2af344efd73654599 | |
| parent | 4239a31c5928981b1582a7762458b080b8fda5ff (diff) | |
feat: get_delay_seconds in command.hpp
| -rw-r--r-- | src/commands/command.hpp | 1 |
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 { |
