mirror of
https://github.com/evennia/evennia.git
synced 2026-08-18 11:14:44 +00:00
Fix logics.
This commit is contained in:
@ -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):
|
||||
|
||||
Reference in New Issue
Block a user