feat(commands/bot): add help command and fix nested reloading

This commit is contained in:
2024-12-30 16:21:15 -05:00
parent d0402a58e9
commit e4af64fa99
6 changed files with 41 additions and 38 deletions

View File

@@ -1,10 +1,18 @@
import os
import sys
EMBED_COLOR = 0xFF6600
OWNERS = [531392146767347712]
PREFIX = "%"
RELOAD_BLACKLISTED_MODULES = [*sys.builtin_module_names]
RELOADABLE_MODULES = [
"arguments",
"commands",
"constants",
"core",
"events",
"utils",
"voice",
"ytdlp",
]
YTDL_OPTIONS = {
"default_search": "auto",