From dad9231a5f8a3d6cbb4bff2be55b89f2558876c4 Mon Sep 17 00:00:00 2001 From: Emily J Date: Sat, 17 Oct 2020 12:16:17 +1100 Subject: [PATCH] access version directly --- bot/events/ready.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/events/ready.js b/bot/events/ready.js index 091e377..706259f 100644 --- a/bot/events/ready.js +++ b/bot/events/ready.js @@ -5,7 +5,7 @@ module.exports = class { async run () { await this.client.functions.wait(1000); - this.client.user.setActivity(`BNA | v${this.client.package.version}`, { type: "WATCHING" }) // lol + this.client.user.setActivity(`BNA | v${this.client.version}`, { type: "WATCHING" }) // lol this.client.logger.ready(`Connected to Discord as ${this.client.user.tag}`); } };