diff options
Diffstat (limited to 'modules/reactions/reactions.cpp')
-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"); } |