TravBot-v3/src/commands/fun/party.ts

14 lines
461 B
TypeScript

import {Command, NamedCommand} from "../../core";
export default new NamedCommand({
description: "Initiates a celebratory stream from the bot.",
async run({send, message, channel, guild, author, member, client, args}) {
send("This calls for a celebration!");
client.user!.setActivity({
type: "STREAMING",
url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
name: "Celebration!"
});
}
});