diff options
-rwxr-xr-x | server.py | 3 | ||||
-rw-r--r-- | utils.py | 1 |
2 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ LOG_AUTH=syslog.LOG_AUTH from websock import WebSocketServer, WebSocket ## Local Modules -from utils import stdout, now +from utils import stdout, now, clients from consts import MAX_CLIENTS, PACKET_ACK import protocol, security, traceback @@ -20,7 +20,6 @@ f.close() PORT=p["PORT"] SECURE=p["SSL"] -clients = [] ############################################################### # Main Class @@ -119,6 +119,7 @@ class dlist(list): Player={} Battle={} ApTimer={} +clients = [] # Databases # Load quest database |