There was an error while loading. Please reload this page.
1 parent adf09a5 commit 836d669Copy full SHA for 836d669
.github/workflows/build.yml
@@ -36,7 +36,7 @@ jobs:
36
37
steps:
38
- name: Download artifacts
39
- uses: actions/download-artifact@v2
+ uses: actions/download-artifact@v4
40
with:
41
name: dist
42
src/listeners/WelcomeMessage.ts
@@ -8,7 +8,6 @@ export const Listener: Listeners<Events.GuildMemberAdd> = {
8
run(client: AllyClient, listener: GuildMember): void {
9
//TODO: Add ability to change what channel to send message to.
10
const welcomeChannelId = listener.guild.systemChannelId; //Add ability to change channel to send to
11
- console.log(welcomeChannelId);
12
listener.guild.channels.fetch(welcomeChannelId).then((channel) => {
13
if (channel.isSendable()) {
14
let welcomeChannel = channel as SendableChannels;
0 commit comments