We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fdfe7 commit df68b49Copy full SHA for df68b49
1 file changed
main.py
@@ -11,6 +11,7 @@
11
from utils.isGestor import verificar_gestor
12
from command.dev import shutdown, restart
13
from command.roleplay import abraco
14
+from command.infos import userinfo
15
16
TOSCO_MODE = False
17
@@ -45,6 +46,9 @@ async def on_ready():
45
46
47
# Comandos de Roleplay(esqueci de colocar o comando /abracar)
48
bot.tree.add_command(abraco.abracar)
49
+
50
+ # Comandos de Infos
51
+ bot.tree.add_command(userinfo.userinfo)
52
53
try:
54
synced = await bot.tree.sync()
0 commit comments