This commit is contained in:
arthur
2024-05-28 19:25:09 +02:00
+4 -1
View File
@@ -9,7 +9,10 @@ module.exports = {
async execute(message, args, client) {
message.delete()
const msg = args[0]
let msg = ""
for (let i = 0; i < args.length; i++) {
msg += args[i] + ' '
}
message.channel.send(msg)
}
};