diff options
author | Cara Salter <cara@devcara.com> | 2023-03-30 15:58:57 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2023-03-30 15:58:57 -0400 |
commit | e63f88aa3f8fe1c0cf8366ee09188a4b18ede166 (patch) | |
tree | a5184887a2ad23623bd1cf1c9d545bd9bf3aac4b /modules | |
parent | 8233fc4bcffc82907e82b31072cb8129aa200ae5 (diff) | |
download | 142bot-e63f88aa3f8fe1c0cf8366ee09188a4b18ede166.tar.gz 142bot-e63f88aa3f8fe1c0cf8366ee09188a4b18ede166.zip |
Finish reactions module
Diffstat (limited to 'modules')
-rw-r--r-- | modules/reactions/reactions.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/reactions/reactions.cpp b/modules/reactions/reactions.cpp index 3818d0d..6455840 100644 --- a/modules/reactions/reactions.cpp +++ b/modules/reactions/reactions.cpp @@ -2,6 +2,7 @@ #include <dpp/json.h> #include <stdlib.h> #include <142bot/modules.hpp> +#include <142bot/util.hpp> #include <fmt/format.h> using std::to_string; @@ -28,7 +29,7 @@ public: } virtual bool OnMessage(const dpp::message_create_t &message, const std::string& clean_message, bool mentioned, const std::vector<std::string> &stringmentions) { for (auto i = reactionMap.begin(); i != reactionMap.end(); i++) { - if (clean_message.find(i->first) != std::string::npos) { + if (lowercase(clean_message).find(i->first) != std::string::npos) { bot->core->message_add_reaction(message.msg, i->second); bot->core->log(dpp::ll_debug, "Adding reaction based on keyword"); } |