This commit is contained in:
Erik 2022-07-29 19:57:11 +03:00
parent ebdadaaf19
commit 1722140225
Signed by: Navy.gif
GPG Key ID: 811EC0CD80E7E5FB
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "commandparser", "name": "commandparser",
"version": "1.0.12", "version": "1.0.13",
"description": "Parser meant to parse commands and their options for discord bots", "description": "Parser meant to parse commands and their options for discord bots",
"main": "build/index.js", "main": "build/index.js",
"author": "Navy.gif", "author": "Navy.gif",

View File

@ -84,7 +84,7 @@ class CommandOption implements ICommandOption {
this.guild = guild; this.guild = guild;
// eslint-disable-next-line @typescript-eslint/ban-types // eslint-disable-next-line @typescript-eslint/ban-types
const func = this[OptionType[this.type]] as Function; const func = this[OptionType[this.type]] as Function;
const result = await func(); const result = await func.bind(this)();
return result as ParseResult; return result as ParseResult;
} }