const { acknowledge } = require("#utils/interactions"); module.exports = { label: "text", name: "say", metadata: { description: 'speak.', description_short: 'speak', examples: ['say hug'], category: 'dev', usage: 'say ' }, onBefore: context => context.user.isClientOwner, onCancel: ()=>{}, run: async (context, args) => { await acknowledge(context); if(context.message.canDelete) context.message.delete(); await context.reply({ content: args.text, allowedMentions: {parse: [], repliedUser: false} }); } };