all repos — simple-discord-music-bot @ 142a67c1f9a5c30d9c4bebd699b8e8c012d0d5ee

A Discord bot making use of discord.js and play-yt.

add new outro
Marco Andronaco andronacomarco@gmail.com
Fri, 16 Sep 2022 14:35:39 +0200
commit

142a67c1f9a5c30d9c4bebd699b8e8c012d0d5ee

parent

150cab4bd1dd3d852b5e00f38fd890fc95923c63

2 files changed, 4 insertions(+), 3 deletions(-)

jump to
M commands/outro.jscommands/outro.js

@@ -3,9 +3,10 @@ const { SlashCommandBuilder } = require('discord.js');

const { createAudioResource, createAudioPlayer, joinVoiceChannel, NoSubscriberBehavior, AudioPlayerStatus } = require('@discordjs/voice'); const outros = [ - { name: 'Random!', value: 'random' }, - { name: 'TheFatRat - Xenogenesis', value: 'thefatrat_xenogenesis.mp3' }, - { name: 'OMFG - Hello', value: 'omfg_hello.mp3' }, + { name: 'Random!', value: 'random' }, + { name: 'TheFatRat - Xenogenesis', value: 'thefatrat_xenogenesis.mp3' }, + { name: 'OMFG - Hello', value: 'omfg_hello.mp3' }, + { name: 'Pegboard Nerds - Disconnected', value: 'pegboard_nerds_disconnected.mp3' }, ]; function get_player(resource, user_connection) {