Remove reasons for now

This commit is contained in:
Crawl
2017-08-20 22:01:17 +02:00
parent e76ebb4fcb
commit c33b78da23

View File

@@ -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<Guild>}
*/
setSystemChannel(systemChannel, reason) {
return this.edit({ systemChannel }, reason);
setSystemChannel(systemChannel) {
return this.edit({ systemChannel });
}
/**