Core user data and leaderboard commands.

Added flexibility to data `update_where`.
Added interactive utils, with improved pager.
Added user data table, with caching and transactional interface.
Added `topcoins` command to `Economy`
Added `top` command to `Study`
This commit is contained in:
2021-08-26 22:34:46 +03:00
parent 05cb9650ee
commit 459a728968
18 changed files with 899 additions and 13 deletions

View File

@@ -1,3 +1,4 @@
from discord import Intents
from cmdClient.cmdClient import cmdClient
from .config import Conf
@@ -9,5 +10,5 @@ conf = Conf(CONFIG_FILE)
# Initialise client
owners = [int(owner) for owner in conf.bot.getlist('owners')]
client = cmdClient(prefix=conf.bot['prefix'], owners=owners)
client = cmdClient(prefix=conf.bot['prefix'], owners=owners, intents=Intents.all())
client.conf = conf