mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Fix logics.
This commit is contained in:
parent
f7f1037441
commit
433b888422
1 changed files with 1 additions and 1 deletions
|
|
@ -313,7 +313,7 @@ class IRCBotFactory(protocol.ReconnectingClientFactory):
|
|||
reason (str): The reason for the failure.
|
||||
|
||||
"""
|
||||
if not (self.bot or self.bot.stopping):
|
||||
if not self.bot or (self.bot and self.bot.stopping):
|
||||
self.retry(connector)
|
||||
|
||||
def start(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue