diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 458539ffd..5c2e98117 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -624,6 +624,13 @@ class Guild { get owner() { return this.members.get(this.ownerID); } + + sync() { + return this.client.ws.send({ + op: 12, + d: [this.id], + }); + } } module.exports = Guild;