diff --git a/src/structures/GroupChat.js b/src/structures/GroupChat.js index 9d13d48..cf68b49 100644 --- a/src/structures/GroupChat.js +++ b/src/structures/GroupChat.js @@ -91,7 +91,7 @@ class GroupChat extends Chat { * @returns {Promise>} */ async removeParticipants(participantIds, sleep = null) { - return return this._changeParticipants(participantIds, 'remove', sleep); + return this._changeParticipants(participantIds, 'remove', sleep); } /** @@ -101,7 +101,7 @@ class GroupChat extends Chat { * @returns {Promise>} */ async promoteParticipants(participantIds, sleep = null) { - return return this._changeParticipants(participantIds, 'promote', sleep); + return this._changeParticipants(participantIds, 'promote', sleep); } /** @@ -111,7 +111,7 @@ class GroupChat extends Chat { * @returns {Promise>} */ async demoteParticipants(participantIds, sleep = null) { - return return this._changeParticipants(participantIds, 'demote', sleep); + return this._changeParticipants(participantIds, 'demote', sleep); } /**