make guild voice a text based channel

This commit is contained in:
Puyodead1 2023-08-27 20:16:49 -04:00
parent da58998bc9
commit c311edc99c
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

View File

@ -506,7 +506,6 @@ export interface DMChannel extends Omit<Channel, "type" | "recipients"> {
export function isTextChannel(type: ChannelType): boolean { export function isTextChannel(type: ChannelType): boolean {
switch (type) { switch (type) {
case ChannelType.GUILD_STORE: case ChannelType.GUILD_STORE:
case ChannelType.GUILD_VOICE:
case ChannelType.GUILD_STAGE_VOICE: case ChannelType.GUILD_STAGE_VOICE:
case ChannelType.GUILD_CATEGORY: case ChannelType.GUILD_CATEGORY:
case ChannelType.GUILD_FORUM: case ChannelType.GUILD_FORUM:
@ -515,6 +514,7 @@ export function isTextChannel(type: ChannelType): boolean {
case ChannelType.DM: case ChannelType.DM:
case ChannelType.GROUP_DM: case ChannelType.GROUP_DM:
case ChannelType.GUILD_NEWS: case ChannelType.GUILD_NEWS:
case ChannelType.GUILD_VOICE:
case ChannelType.GUILD_NEWS_THREAD: case ChannelType.GUILD_NEWS_THREAD:
case ChannelType.GUILD_PUBLIC_THREAD: case ChannelType.GUILD_PUBLIC_THREAD:
case ChannelType.GUILD_PRIVATE_THREAD: case ChannelType.GUILD_PRIVATE_THREAD: