From 665ef21c858589e8beddd07d2b3fd7a36627bc99 Mon Sep 17 00:00:00 2001 From: Zack Campbell Date: Thu, 29 Dec 2016 10:04:41 -0600 Subject: [PATCH] Update DMChannel, GroupDMChannel for docs (#1038) --- src/structures/DMChannel.js | 2 +- src/structures/GroupDMChannel.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/DMChannel.js b/src/structures/DMChannel.js index abf197e4b..de49c8b3f 100644 --- a/src/structures/DMChannel.js +++ b/src/structures/DMChannel.js @@ -37,8 +37,8 @@ class DMChannel extends Channel { } // These are here only for documentation purposes - they are implemented by TextBasedChannel + send() { return; } sendMessage() { return; } - sendTTSMessage() { return; } sendEmbed() { return; } sendFile() { return; } sendCode() { return; } diff --git a/src/structures/GroupDMChannel.js b/src/structures/GroupDMChannel.js index ada3a90f4..84fe4f994 100644 --- a/src/structures/GroupDMChannel.js +++ b/src/structures/GroupDMChannel.js @@ -121,8 +121,8 @@ class GroupDMChannel extends Channel { } // These are here only for documentation purposes - they are implemented by TextBasedChannel + send() { return; } sendMessage() { return; } - sendTTSMessage() { return; } sendEmbed() { return; } sendFile() { return; } sendCode() { return; }