Update say

This commit is contained in:
*x1
2024-05-28 19:22:29 +02:00
parent ef200a511e
commit 482ef29659
+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)
}
};