From c33b78da232824dabd3f2bad80661bb2e9306c7f Mon Sep 17 00:00:00 2001 From: Crawl Date: Sun, 20 Aug 2017 22:01:17 +0200 Subject: [PATCH] Remove reasons for now --- src/structures/Guild.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/structures/Guild.js b/src/structures/Guild.js index eee49677c..598dbac69 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -628,11 +628,10 @@ class Guild { /** * Edit the system channel of the guild. * @param {ChannelResolvable} systemChannel The new system channel - * @param {string} [reason] Reason for changing the guild's system channel * @returns {Promise} */ - setSystemChannel(systemChannel, reason) { - return this.edit({ systemChannel }, reason); + setSystemChannel(systemChannel) { + return this.edit({ systemChannel }); } /**