mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-06 07:12:04 +01:00
fix false type from _clients in server.py
This commit is contained in:
parent
f0081d6e6d
commit
d08381108f
|
|
@ -26,7 +26,7 @@ _dataPackets = []
|
|||
_lockDataPackets = threading.Lock()
|
||||
|
||||
# module wide global list for all currently connected clients
|
||||
_clients = {} # _clients[ThreadName] = {"address", "timestamp"}
|
||||
_clients = [] # _clients[ThreadName] = {"address", "timestamp"}
|
||||
_lockClients = threading.Lock()
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue