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/how.js
2020-05-02 14:25:45 -07:00

14 lines
365 B
JavaScript

let { Command } = require("discord-akairo")
module.exports = class extends Command {
constructor() {
super("how", {
regex: /^how$/i,
category: "responders",
description: "Reacts with emoji letters."
})
}
async exec(message, args) {
for (let o of "🇭🇴🇼") await message.react(o)
}
}