diff --git a/commands/miscellaneous.py b/commands/miscellaneous.py index 880c336..3a5a545 100644 --- a/commands/miscellaneous.py +++ b/commands/miscellaneous.py @@ -60,7 +60,7 @@ class Miscellaneous(commands.Cog): self.bot.telnet_object.session.write(bytes(command, 'ascii') + b"\r\n") self.bot.telnet_object.session.read_until(bytes(f'{time_sent} INFO]:', 'ascii'), 2) - if ctx.channel = ctx.guild.get_channel(server_chat): + if ctx.channel == ctx.guild.get_channel(server_chat): self.bot.telnet_object.session.read_until(bytes('\r\n', 'ascii'), 2) next_line = self.bot.telnet_object.session.read_until(bytes('\r\n', 'ascii'), 2) em.description = f"Response from server: {next_line.decode('utf-8')}"