From 30bcd8ca79fc44c37400ccfdac65caf05f98a526 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sat, 17 Mar 2018 12:18:34 -0700 Subject: [PATCH] control: remove check for _connection_thread (removed in select rework) --- coremods/control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coremods/control.py b/coremods/control.py index d8f0d80..ab463f8 100644 --- a/coremods/control.py +++ b/coremods/control.py @@ -129,7 +129,7 @@ def rehash(): for network, sdata in new_conf['servers'].items(): # Connect any new networks or disconnected networks if they aren't already. - if (network not in world.networkobjects) or (not world.networkobjects[network]._connection_thread.is_alive()): + if network not in world.networkobjects: try: proto = utils._get_protocol_module(sdata['protocol'])