fix(pterodactyl): reverted previous commit
This commit is contained in:
parent
2fb201a9cb
commit
579855af02
1 changed files with 3 additions and 3 deletions
|
@ -119,11 +119,11 @@ class Pterodactyl(commands.Cog):
|
||||||
self.logger.debug("Checking if message is a chat message")
|
self.logger.debug("Checking if message is a chat message")
|
||||||
regex = await self.config.chat_regex()
|
regex = await self.config.chat_regex()
|
||||||
self.logger.debug('1')
|
self.logger.debug('1')
|
||||||
regex_match: Optional[re.Match[str]] = re.match(regex, text)
|
match: Optional[re.Match[str]] = re.match(regex, text)
|
||||||
self.logger.debug('2')
|
self.logger.debug('2')
|
||||||
if regex_match:
|
if match:
|
||||||
self.logger.debug('3')
|
self.logger.debug('3')
|
||||||
dict = {"time": regex_match.group(1), "username": regex_match.group(2), "message": regex_match.group(3)}
|
dict = {"time": match.group(1), "username": match.group(2), "message": match.group(3)}
|
||||||
self.logger.debug('4')
|
self.logger.debug('4')
|
||||||
self.logger.debug("Message is a chat message\n%s", json.dumps(dict))
|
self.logger.debug("Message is a chat message\n%s", json.dumps(dict))
|
||||||
self.logger.debug('5')
|
self.logger.debug('5')
|
||||||
|
|
Loading…
Reference in a new issue