pinano-discord / Pinano-Discord-Bot

A Discord bot for the Pinano guild
MIT License
9 stars 11 forks source link

use fetchMember() instead of members.get() #37

Closed pianiststickman closed 5 years ago

pianiststickman commented 5 years ago

Turns out members is a cache and may not contain all users for guilds that are over 250 members.

Causing issues with lb and third party p!stats. Really bad workaround is to p!eval the user using fetchMember(), which will load the member into the cache.

pianiststickman commented 5 years ago

Turns out, client initialization contains an option called fetchAllMembers. Pull request incoming.

pianiststickman commented 5 years ago

PR #42 merged