Fix blank methods for user and textchannel

This commit is contained in:
Amish Shah
2016-08-18 13:13:31 +01:00
parent 18299970bd
commit be7b0fb5ca
3 changed files with 13 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -28,6 +28,14 @@ class TextChannel extends GuildChannel {
return this.store.add('messages', message);
}
sendMessage() {
return;
}
sendTTSMessage() {
return;
}
}
TextBasedChannel.applyToClass(TextChannel);

View File

@@ -104,6 +104,10 @@ class User {
sendMessage() {
return;
}
sendTTSMessage() {
return;
}
}
TextBasedChannel.applyToClass(User);