mirror of
https://github.com/qwerinope/qweribot.git
synced 2025-12-19 05:31:38 +01:00
21 lines
923 B
TypeScript
21 lines
923 B
TypeScript
import { redis } from "bun";
|
|
import { Command, sendMessage } from "commands";
|
|
import parseCommandArgs from "lib/parseCommandArgs";
|
|
import { namedcheers } from "cheers";
|
|
|
|
export default new Command({
|
|
name: 'enablecheer',
|
|
aliases: ['enablecheer'],
|
|
usertype: 'moderator',
|
|
disableable: false,
|
|
execution: async msg => {
|
|
const args = parseCommandArgs(msg.messageText);
|
|
if (!args[0]) { await sendMessage('Please specify a cheer to enable', msg.messageId); return; };
|
|
const selection = namedcheers.get(args[0].toLowerCase());
|
|
if (!selection) { await sendMessage(`There is no ${args[0]} cheer`, msg.messageId); return; };
|
|
const result = await redis.srem('disabledcheers', selection.name);
|
|
if (result === 0) { await sendMessage(`The ${selection.name} cheer isn't disabled`, msg.messageId); return; };
|
|
await sendMessage(`Successfully enabled the ${selection.name} cheer`, msg.messageId);
|
|
}
|
|
});
|