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/H.js
2020-05-02 14:27:40 -07:00

18 lines
382 B
JavaScript

let { Command } = require("discord-akairo")
module.exports = class extends Command {
constructor() {
super("H", {
regex: /^H$/i,
category: "responders",
description: "Dms you emoji H."
})
}
async exec(message, args) {
try {
await message.author.send('🇭')
} catch(e) {
}
}
}