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

14 lines
407 B
TypeScript
Raw Normal View History

import {NamedCommand} from "onion-lasers";
2021-04-08 11:37:49 +00:00
export default new NamedCommand({
description: "Initiates a celebratory stream from the bot.",
async run({send, client}) {
2021-04-10 13:34:55 +00:00
send("This calls for a celebration!");
2021-04-08 11:37:49 +00:00
client.user!.setActivity({
type: "STREAMING",
url: "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
name: "Celebration!"
});
}
});