From cbd9f28f38848e21e68ce8a129f46b1b5152a6ce Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 14 Mar 2024 16:39:15 -0400 Subject: [PATCH] fix(pterodactyl): fixed incorrect configuration value --- pterodactyl/pterodactyl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index ec20d7c..a914c81 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -101,7 +101,7 @@ class Pterodactyl(commands.Cog): "O": str(await config.topic_port()), } if await config.api_endpoint() == "minecraft": - status, response = await mcsrvstatus.get_status(await config.topic_ip(), await config.topic_port()) + status, response = await mcsrvstatus.get_status(await config.topic_hostname(), await config.topic_port()) if status: placeholders.update({ "I": response['ip'],