added p/recent and p/rejoin/other fixes

This commit is contained in:
ayeuhugyu 2024-01-02 22:09:43 -08:00
parent 963136bf74
commit 89b75481e9
12 changed files with 156 additions and 16 deletions

View file

@ -34,6 +34,10 @@ client.on("interactionCreate", (interaction) => {
events.interactionCreate(interaction);
});
client.on("voiceStateUpdate", (oldState, newState) => {
events.voiceStateUpdate(oldState, newState);
});
register();
client.login(process.env.TOKEN);