Add whitelist for users as well
Some checks failed
CI / CI (push) Has been cancelled

This commit is contained in:
SileNce5k 2025-05-03 07:23:22 +02:00
parent 30c7fd171f
commit 5620a725aa
Signed by: SileNce
GPG key ID: B0A142BB4291B204
4 changed files with 167 additions and 64 deletions

View file

@ -44,8 +44,10 @@ const {
client.settings = new Collection();
client.commands = new Collection();
client.serverPrefixes = new Collection();
client.whitelist = new Collection();
client.whitelist = {
guild: new Collection(),
user: new Collection()
}
createAndLoadWhitelistTable(client.whitelist);