From 66f1b45ae6a18da8e952612e77aa88f1bea7a1d7 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Thu, 24 Aug 2023 11:37:13 +1000 Subject: [PATCH] bot: Fixed master server port --- discord-bot/bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord-bot/bot.py b/discord-bot/bot.py index ed3d788..ea841b5 100644 --- a/discord-bot/bot.py +++ b/discord-bot/bot.py @@ -9,8 +9,8 @@ TOKEN = os.getenv('DISCORD_TOKEN') ADMINID = 0 Master_IP = os.getenv('MASTER_IP') Master_Port = os.getenv('MASTER_PORT') -if Master_IP == None: - Master_IP = "5000" +if Master_Port == None: + Master_Port = "5000" intents = discord.Intents.default() client = discord.Client(intents=intents)