diff options
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); |