diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index aab394d..f02eec8 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -119,11 +119,11 @@ class Pterodactyl(commands.Cog): self.logger.debug("Checking if message is a chat message") regex = await self.config.chat_regex() self.logger.debug('1') - match: Optional[re.Match[str]] = re.match(regex, text) + regex_match: Optional[re.Match[str]] = re.match(regex, text) self.logger.debug('2') - if match: + if regex_match: self.logger.debug('3') - dict = {"time": match.group(1), "username": match.group(2), "message": match.group(3)} + dict = {"time": regex_match.group(1), "username": regex_match.group(2), "message": regex_match.group(3)} self.logger.debug('4') self.logger.debug("Message is a chat message\n%s", json.dumps(dict)) self.logger.debug('5')