diff --git a/lib/Structures/ServerChannel.js b/lib/Structures/ServerChannel.js index 29e626f8..d16f4bc8 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 4370ef18..3a51cd9c 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(){