client.phone should be a Collection

This commit is contained in:
Dragon Fire
2020-02-28 15:13:22 -05:00
parent c077a180ef
commit 98b916aa16
+1 -1
View File
@@ -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();
}
};