UNPKG

@getsolara/solara.js

Version:

A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.

4 lines 257 B
module.exports = { name: "$shardID", description: "Returns the ID of the current shard.", takesBrackets: false, execute: async (context, args) => { return context.guild?.shardId?.toString() ?? context.client.shard?.ids[0]?.toString() ?? "0"; } };