1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 21:02:38 +00:00

Moved settings.pkl to misc and temp.pkl to temp (requires deletion)

This commit is contained in:
Myned 2017-11-20 08:44:23 -05:00
parent e2c770e620
commit 80cb054023

View file

@ -66,9 +66,9 @@ def dump(obj, filename, *, json=False):
jsn.dump(obj, outfile, indent=4, sort_keys=True)
settings = setdefault('settings.pkl', {'del_ctx': [], 'prefixes': {}})
settings = setdefault('misc/settings.pkl', {'del_ctx': [], 'prefixes': {}})
tasks = setdefault('cogs/tasks.pkl', {'auto_del': [], 'auto_rev': []})
temp = setdefault('temp.pkl', {})
temp = setdefault('temp/temp.pkl', {})
RATE_LIMIT = 2.2
color = d.Color(0x1A1A1A)