diff options
| author | ilotterytea <iltsu@alright.party> | 2024-05-18 00:12:22 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-05-18 00:12:22 +0500 |
| commit | d7a2de17e9b7931f68b5b4079b1c36866a19d343 (patch) | |
| tree | 172a7f39a3126e919f1554305ece06db9620b42d | |
| parent | 3860b8e666347af2958abbdbd35d888fa94d1c07 (diff) | |
upd: use the other prefix if the bot in debug mode
| -rw-r--r-- | src/constants.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/constants.hpp b/src/constants.hpp index 1bb3003..3c3462b 100644 --- a/src/constants.hpp +++ b/src/constants.hpp @@ -5,5 +5,9 @@ #define DEFAULT_LOCALE_ID "english" +#ifdef DEBUG_MODE +const std::string DEFAULT_PREFIX = "~"; +#else const std::string DEFAULT_PREFIX = "!"; +#endif const auto START_TIME = std::chrono::steady_clock::now(); |
