From e80dd4a6e96d3d40df16f2a98a53547be9d6a079 Mon Sep 17 00:00:00 2001 From: entar Date: Wed, 21 May 2025 12:30:06 +0700 Subject: [PATCH] Help command fixes --- commands/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/base.js b/commands/base.js index f067d6f..3365c9b 100644 --- a/commands/base.js +++ b/commands/base.js @@ -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 } }) }