mirror of
https://github.com/myned/modufur.git
synced 2024-12-24 22:27:28 +00:00
Fix logic error
This commit is contained in:
parent
55c97ae356
commit
9c4223d0f5
1 changed files with 14 additions and 12 deletions
|
@ -87,7 +87,7 @@ async def on_ready():
|
||||||
print('\n> > > > > > > > >\nC O N N E C T E D : {}\n> > > > > > > > >\n'.format(bot.user.name))
|
print('\n> > > > > > > > >\nC O N N E C T E D : {}\n> > > > > > > > >\n'.format(bot.user.name))
|
||||||
await bot.get_channel(u.config['info_channel']).send(f'**Started** \N{BLACK SUN WITH RAYS} `{"` or `".join(u.config["prefix"])}`')
|
await bot.get_channel(u.config['info_channel']).send(f'**Started** \N{BLACK SUN WITH RAYS} `{"` or `".join(u.config["prefix"])}`')
|
||||||
# u.notify('C O N N E C T E D')
|
# u.notify('C O N N E C T E D')
|
||||||
|
try:
|
||||||
if u.temp['startup']:
|
if u.temp['startup']:
|
||||||
with suppress(err.NotFound):
|
with suppress(err.NotFound):
|
||||||
if u.temp['startup'][0] == 'guild':
|
if u.temp['startup'][0] == 'guild':
|
||||||
|
@ -102,6 +102,8 @@ async def on_ready():
|
||||||
u.dump(u.temp, 'temp/temp.pkl')
|
u.dump(u.temp, 'temp/temp.pkl')
|
||||||
|
|
||||||
checks.ready = True
|
checks.ready = True
|
||||||
|
except KeyError:
|
||||||
|
u.dump({'startup': ()}, 'temp/temp.pkl')
|
||||||
else:
|
else:
|
||||||
print('\n- - - -\nI N F O : reconnected, reinitializing tasks\n- - - -\n')
|
print('\n- - - -\nI N F O : reconnected, reinitializing tasks\n- - - -\n')
|
||||||
reconnect = await bot.get_user(u.config['owner_id']).send('**RECONNECTING**')
|
reconnect = await bot.get_user(u.config['owner_id']).send('**RECONNECTING**')
|
||||||
|
|
Loading…
Reference in a new issue