This repository has been archived on 2022-10-14. You can view files and clone it, but cannot push or open issues or pull requests.
melonybot/commands/responders/bomb.js
2020-04-26 15:35:00 -07:00

14 lines
355 B
JavaScript

module.exports = class extends Akairo.Command {
constructor() {
super("bomb", {
regex: /^bomb$/i,
description: "Bot responds with an animated bomb emoji",
category: "responders"
})
}
async exec(message, args) {
let bomb = await message.channel.send(":bomb:")
await new Promise(r => setTimeout(r, 3000))
await bomb.edit(":boom:")
}
}