Update miscellaneous.py

This commit is contained in:
Elmon11 2021-01-05 00:46:10 +01:00 committed by GitHub
parent b762622bd2
commit b7910ff7d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,7 @@
import discord
import events
import asyncio
import ast
from datetime import datetime
from discord.ext import commands
@ -28,6 +30,7 @@ class Miscellaneous(commands.Cog):
if not args or args[0] in ['reconnect', 'connect']:
try:
self.bot.telnet_object.connect()
self.bot.telnet_object_2.connect()
except Exception as e:
em.description = f'Failed reconnection: {e}'
em.colour = 0xFF0000
@ -37,8 +40,10 @@ class Miscellaneous(commands.Cog):
elif args[0] == 'name':
try:
self.bot.telnet_object.session.close()
self.bot.telnet_object_2.session.close()
self.bot.telnet_object.connect(args[1])
events.telnet_username = self.bot.telnet_object.username
self.bot.telnet_object_2.connect(args[1])
self.bot.telnet_object.username
config = read_json('config')
config['TELNET_USERNAME'] = self.bot.telnet_object.username
write_json('config', config)