From d7a2de17e9b7931f68b5b4079b1c36866a19d343 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 18 May 2024 00:12:22 +0500 Subject: upd: use the other prefix if the bot in debug mode --- src/constants.hpp | 4 ++++ 1 file changed, 4 insertions(+) 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(); -- cgit v1.2.3