.HIDE. Add a bunch of <font>s

This commit is contained in:
Nyo
2016-06-02 19:07:33 +02:00
parent feee262ed1
commit 6c85995e53
4 changed files with 13 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ from objects import channelList
from objects import matchList
import threading
VERSION = "0.9"
VERSION = "1.2"
db = None
conf = None
@@ -17,4 +17,3 @@ memes = True
restarting = False
pool = None
requestTime = False
meme = threading.Lock()

View File

@@ -7,6 +7,7 @@ from helpers import consoleHelper
from constants import bcolors
from constants import serverPackets
from events import logoutEvent
import threading
class token:
"""Osu Token object
@@ -75,6 +76,7 @@ class token:
self.rank = userHelper.getRankPrivileges(self.userID)
self.loginTime = int(time.time())
self.pingTime = self.loginTime
self.lock = threading.Lock() # <-- Sync primitive
# Default variables
self.spectators = []