diff --git a/lib/Structures/ServerChannel.js b/lib/Structures/ServerChannel.js index 29e626f88..d16f4bc82 100644 --- a/lib/Structures/ServerChannel.js +++ b/lib/Structures/ServerChannel.js @@ -100,7 +100,7 @@ var ServerChannel = (function (_Channel) { }; ServerChannel.prototype.toString = function toString() { - return this.name; + return "<#" + this.id + ">"; }; ServerChannel.prototype.setName = function setName() { diff --git a/src/Structures/ServerChannel.js b/src/Structures/ServerChannel.js index 4370ef18b..3a51cd9cc 100644 --- a/src/Structures/ServerChannel.js +++ b/src/Structures/ServerChannel.js @@ -62,7 +62,7 @@ class ServerChannel extends Channel{ } toString(){ - return this.name; + return `<#${this.id}>`; } setName(){