Semantically correct

This commit is contained in:
hydrabolt
2015-11-15 14:26:30 +00:00
parent fbd922e557
commit f1bde8a98a
6 changed files with 34 additions and 16 deletions

View File

@@ -39,6 +39,14 @@ var TextChannel = (function (_ServerChannel) {
return this.client.updateChannel.apply(this.client, reg(this, arguments));
};
TextChannel.prototype.sendMessage = function sendMessage() {
return this.client.sendMessage.apply(this.client, reg(this, arguments));
};
TextChannel.prototype.sendTTSMessage = function sendTTSMessage() {
return this.client.sendTTSMessage.apply(this.client, reg(this, arguments));
};
_createClass(TextChannel, [{
key: "lastMessage",
get: function get() {