UNPKG

@getsolara/solara.js

Version:

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

2 lines 292 B
const StopExecutionError = require('../errors/StopExecutionError'); module.exports = { name: "$stopExecution", description: "Stops command execution silently. Args: [message?]", takesBrackets: true, execute: async (context, args) => { throw new StopExecutionError(args.join(';') || ""); } };