fix(pterodactyl): use display_name and not name

This commit is contained in:
Seaswimmer 2024-02-29 19:01:17 -05:00
parent 5a4dc4866c
commit f792ad58a0
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -170,7 +170,7 @@ class Pterodactyl(commands.Cog):
channel = self.bot.get_channel(await self.config.console_channel())
if channel:
await channel.send(f"Received chat message from {message.author.id}: {message.content[:1900]}")
msg = json.dumps({"event": "send command", "args": [self.get_tellraw_string(message.author.name, message.content, message.author.color)]})
msg = json.dumps({"event": "send command", "args": [self.get_tellraw_string(message.author.display_name, message.content, message.author.color)]})
self.logger.debug("Sending chat message to server:\n%s", msg)
await self.websocket.send(msg)