TravBot-v3/src/commands/utility/emote.ts

16 lines
531 B
TypeScript
Raw Normal View History

import {Command, NamedCommand} from "../../core";
import {processEmoteQueryFormatted} from "./modules/emote-utils";
export default new NamedCommand({
2020-12-15 01:44:28 +00:00
description: "Send the specified emote.",
run: "Please provide a command name.",
any: new Command({
description: "The emote(s) to send.",
usage: "<emotes...>",
async run({guild, channel, message, args}) {
const output = processEmoteQueryFormatted(args);
if (output.length > 0) channel.send(output);
2020-12-15 01:44:28 +00:00
}
})
});