From d3423bb5437020d248e7eea7788720493d5660a6 Mon Sep 17 00:00:00 2001 From: Navy Date: Fri, 14 Aug 2020 22:46:08 +0300 Subject: [PATCH] stat tracking --- structure/interfaces/Command.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/structure/interfaces/Command.js b/structure/interfaces/Command.js index fa0e622..76210f3 100644 --- a/structure/interfaces/Command.js +++ b/structure/interfaces/Command.js @@ -43,6 +43,10 @@ class Command extends Component { }; this._throttles = new Map(); + this._invokes = { + success: 0, + fail: 0 + }; }