Skip to content

Commit

Permalink
remove sharding
Browse files Browse the repository at this point in the history
  • Loading branch information
wdhdev committed Mar 4, 2024
1 parent d8f22b1 commit d184c45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/commands/info/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ const command: Command = {
{ name: "πŸ“ˆ Version", value: bot.version, inline: true },
{ name: "🟒 Online Since", value: `<t:${(Date.now() - client.uptime).toString().slice(0, -3)}:f>`, inline: true },
{ name: "πŸ”” Active Reminders", value: `${client.reminders.size}`, inline: true },
{ name: "πŸ“Š Guild Count", value: `${client.guilds.cache.size}`, inline: true },
{ name: "πŸ” Shard ID", value: `${client.shard.ids[0] + 1} / ${client.shard.count + 1}` }
{ name: "πŸ“Š Guild Count", value: `${client.guilds.cache.size}`, inline: true }
)

const buttons: any = new Discord.ActionRowBuilder()
Expand Down
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ const client = new ExtendedClient({
}
],
status: "online"
},
shardCount: 10
}
})

// Error Handling
Expand Down

0 comments on commit d184c45

Please sign in to comment.