mirror of
https://github.com/danbulant/discord.js
synced 2026-06-19 06:31:20 +00:00
Fix blank methods for user and textchannel
This commit is contained in:
parent
18299970bd
commit
be7b0fb5ca
3 changed files with 13 additions and 1 deletions
File diff suppressed because one or more lines are too long
|
|
@ -28,6 +28,14 @@ class TextChannel extends GuildChannel {
|
|||
|
||||
return this.store.add('messages', message);
|
||||
}
|
||||
|
||||
sendMessage() {
|
||||
return;
|
||||
}
|
||||
|
||||
sendTTSMessage() {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
TextBasedChannel.applyToClass(TextChannel);
|
||||
|
|
|
|||
|
|
@ -104,6 +104,10 @@ class User {
|
|||
sendMessage() {
|
||||
return;
|
||||
}
|
||||
|
||||
sendTTSMessage() {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
TextBasedChannel.applyToClass(User);
|
||||
|
|
|
|||
Loading…
Reference in a new issue