1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-12-25 06:37:29 +00:00

Added global color

This commit is contained in:
Myned 2017-11-06 01:56:52 -05:00
parent 9c2804b562
commit 61e60d1c56
2 changed files with 1 additions and 1 deletions

View file

@ -21,7 +21,6 @@ class MsG:
def __init__(self, bot): def __init__(self, bot):
self.bot = bot self.bot = bot
self.color = d.Color(0x1A1A1A)
self.LIMIT = 100 self.LIMIT = 100
self.HISTORY_LIMIT = 150 self.HISTORY_LIMIT = 150
self.RATE_LIMIT = u.RATE_LIMIT self.RATE_LIMIT = u.RATE_LIMIT

View file

@ -69,6 +69,7 @@ tasks = setdefault('cogs/tasks.pkl', {'auto_del': [], 'auto_qual': [], 'auto_rev
temp = setdefault('temp.pkl', {}) temp = setdefault('temp.pkl', {})
RATE_LIMIT = 2.2 RATE_LIMIT = 2.2
color = d.Color(0x1A1A1A)
session = aiohttp.ClientSession() session = aiohttp.ClientSession()