From 53b894aea16538de44568c6b1ef2222ff97de537 Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Wed, 11 May 2022 16:52:04 +0300 Subject: [PATCH] wrapper getter --- src/structure/client/wrappers/GuildWrapper.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/structure/client/wrappers/GuildWrapper.js b/src/structure/client/wrappers/GuildWrapper.js index 81762aa..794e86d 100644 --- a/src/structure/client/wrappers/GuildWrapper.js +++ b/src/structure/client/wrappers/GuildWrapper.js @@ -345,6 +345,10 @@ class GuildWrapper { return this.guild.id; } + get shardId() { + return this.guild.shardId; + } + get maximumMembers() { return this.guild.maximumMembers; }