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

View File

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