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/headpat.js
2020-04-27 23:07:08 -07:00

16 lines
326 B
JavaScript

const { Command } = require('discord-akairo');
module.exports = class extends Command {
constructor() {
super('headpat', {
aliases: ['headpat','hp'],
description: "Headpats.",
typing: true
});
}
exec(message) {
return message.reply('*headpats*');
}
}