shard.id property
Im curious on how I should get this number, im using the most recent status-sharding ver
2 Replies
there are shards and clusters in this package, so group of shards acts as a single clusters (aka client is being passes shards: [id, id]) and that's a cluster
to get cluster id, you do
client.cluster.id
, for shards, you can only get them per guild with guild.shardId
, or if you want to know what all shards are on your client (cluster), client.ws.shards

Thanks king