You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
644 B

import { sendInteractionResponse, SlashCommandOptions } from "@wackford/mod.ts";
export default {
name: "disclaimer",
description: "proves that we are not at fault when the bot says something stupid again",
execute: async (bot, interaction) => {
await sendInteractionResponse(bot, interaction, {
content: `DISCLAIMER: We (Wackyware) do not take any responsibility for the things said by this bot, if they offend you, get the administrator of your server to remove the message.
For more details see https://discord.gg/Pxt9dVDSRn and <https://www.ruthenic.com/blog>`,
});
},
} as SlashCommandOptions;