18 lines
382 B
JavaScript
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) {
|
|
|
|
}
|
|
}
|
|
} |