TravBot-v3/src/modules/channelDefaults.ts

18 lines
529 B
TypeScript
Raw Normal View History

import {client} from "../index";
import {Guild} from "../lib";
2021-05-08 13:32:45 +00:00
import {Permissions} from "discord.js";
client.on("voiceStateUpdate", async (before, after) => {
2021-05-08 13:32:45 +00:00
const channel = before.channel;
const {defaultChannelNames} = new Guild(after.guild.id);
2021-05-08 13:32:45 +00:00
if (
channel &&
channel.members.size === 0 &&
defaultChannelNames.has(channel.id) &&
2021-05-17 22:12:14 +00:00
before.guild.me?.permissions.has(Permissions.FLAGS.MANAGE_CHANNELS)
2021-05-08 13:32:45 +00:00
) {
channel.setName(defaultChannelNames.get(channel.id)!);
}
});