pass client to readlogs

This commit is contained in:
SowinskiBraeden committed 2023-04-15 12:23:16 -07:00
1 parent aa0f08ce0e
commit ba18f99db0
3 files changed
+10 -10

No files matched your search

+1 -1
View File
@@ -7,5 +7,5 @@ module.exports = async (client) => {
client.log(`Successfully Logged in as ${client.user.tag}`);
client.log(`Ready to serve in ${client.channels.cache.size} channels on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users.`)
client.RegisterSlashCommands();
setInterval(client.logsUpdateTimer, client.timer);
setInterval(client.logsUpdateTimer, client.timer, client);
};