Remove DMChannel.bulkDelete and GroupDMChannel.bulkDelete

This commit is contained in:
Amish Shah
2017-01-09 18:20:05 +00:00
parent 391b618b3f
commit b5026909a1
3 changed files with 6 additions and 5 deletions

View File

@@ -136,10 +136,10 @@ class GroupDMChannel extends Channel {
get typingCount() { return; }
createCollector() { return; }
awaitMessages() { return; }
bulkDelete() { return; }
// doesn't work on group DMs; bulkDelete() { return; }
_cacheMessage() { return; }
}
TextBasedChannel.applyToClass(GroupDMChannel, true);
TextBasedChannel.applyToClass(GroupDMChannel, true, ['bulkDelete']);
module.exports = GroupDMChannel;