This repository has been archived on 2022-10-14. You can view files and clone it, but cannot push or open issues/pull-requests.
melonybot/trashbin/death.js

12 lines
330 B
JavaScript

module.exports = class extends Akairo.Command {
constructor() {
super("death", {
regex: /^death$/i,
description: "Bot responds with https://www.youtube.com/watch?v=iHLMnP7bpnk",
category: "responders"
})
}
async exec(message, args) {
await message.channel.send("https://www.youtube.com/watch?v=iHLMnP7bpnk")
}
}