diff options
author | Cara Salter <cara@devcara.com> | 2023-04-07 10:19:10 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2023-04-07 10:19:10 -0400 |
commit | c08cc6cbc9b041cacc78483df5f3062019471934 (patch) | |
tree | 13bd920d469e862fd8d217415efb043fe4a27cce /include | |
parent | 2440f9b9f8aa93398e57e392506dc1c68ab8eed9 (diff) | |
download | 142bot-c08cc6cbc9b041cacc78483df5f3062019471934.tar.gz 142bot-c08cc6cbc9b041cacc78483df5f3062019471934.zip |
meta: Add sentry support
Change-Id: Icda968ab189d601c5e390dfee094ae4419cce9e6
Diffstat (limited to 'include')
-rw-r--r-- | include/142bot/bot.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/142bot/bot.hpp b/include/142bot/bot.hpp index 165515f..98a7ed6 100644 --- a/include/142bot/bot.hpp +++ b/include/142bot/bot.hpp @@ -14,12 +14,13 @@ class Bot { private: bool run_database_migrations(); public: + char prefix; pqxx::connection conn; class dpp::cluster * core; /* The bot's user from the ready event */ dpp::user user; - Bot(bool development, dpp::cluster* cluster); + Bot(bool development, dpp::cluster* cluster, char prefix); //virtual ~Bot(); void set_owner_id(dpp::snowflake id); |