This repository has been archived on 2022-10-14. You can view files and clone it, but cannot push or open issues/pull-requests.
melonybot/trashbin/sex.js

14 lines
341 B
JavaScript

let { Command } = require("discord-akairo")
module.exports = class extends Command {
constructor() {
super("sex", {
regex: /^sex$/i,
category: "responders",
description: "Bot responds with no."
})
}
async exec(message, args) {
await message.channel.send("no");
}
}