Help command fixes

This commit is contained in:
entar 2025-05-21 12:30:06 +07:00
parent 208d6704b0
commit e80dd4a6e9

View File

@ -31,7 +31,7 @@ module.exports = [
arguments.forEach((argument, index) => {
console.log(typeof argument)
if (typeof argument == "object" || typeof argument == "function") {
arguments[index] = argument.prototype.name
arguments[index] = argument.name
}
})
}