Corrected Presence format to all for custom type

This commit is contained in:
IrPgFKS0 committed 2023-09-02 23:43:35 -07:00
1 parent d35622b52d
commit 63294d3bea
1 file changed
+4 -4
+4 -4
View File
@@ -1,9 +1,9 @@
module.exports = async (client) => { module.exports = async (client) => {
(client.Ready = true), (client.Ready = true),
client.user.setActivity( client.user.setActivity({
client.config.Presence.name, type: client.config.Presence.type,
client.config.Presence.type name: client.config.Presence.name
); });
client.log(`Successfully Logged in as ${client.user.tag}`); 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.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(); client.RegisterSlashCommands();