From 98b916aa16ff31922f0fa9dfd63c4b2d6dc53f08 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 28 Feb 2020 15:13:22 -0500 Subject: [PATCH] client.phone should be a Collection --- structures/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/Client.js b/structures/Client.js index 6f6d578f..45b497d3 100644 --- a/structures/Client.js +++ b/structures/Client.js @@ -20,6 +20,6 @@ module.exports = class XiaoClient extends CommandoClient { this.pokemon = new PokemonStore(); this.memePoster = new MemePoster(this); this.games = new Collection(); - this.phone = new Map(); + this.phone = new Collection(); } };