Send correct amount of pending members

This commit is contained in:
Alejandro 2019-05-26 23:30:51 +03:00
parent 3ffd1ea10a
commit 87141be688

View File

@ -37,7 +37,7 @@ public class GuildMembersComposer extends MessageComposer {
this.response.appendString(this.guild.getName());
this.response.appendInt(this.guild.getRoomId());
this.response.appendString(this.guild.getBadge());
this.response.appendInt(this.guild.getMemberCount());
this.response.appendInt(this.level == 3 ? this.guild.getRequestCount() : this.guild.getMemberCount());
this.response.appendInt(this.members.size());
Calendar cal = Calendar.getInstance(TimeZone.getDefault());