discord_bot/commands/misc/say.js
SileNce5k 94d1b0f297
Some checks are pending
CI / CI (push) Waiting to run
Make the say command admin only
2026-02-26 10:52:40 +01:00

14 lines
No EOL
247 B
JavaScript

module.exports = {
name: 'say',
description: 'Repeats arguments',
admin: true,
execute({message, args}) {
if(args.length == 0)
message.channel.send("Can't send empty message");
else{
message.channel.send(args.join(" "))
}
}
};