Compare commits

..

No commits in common. "8048822859cef12a8d9863ff031e49e2534a16c2" and "8362ef0659244c07e5f9e357dc27acfa8b432854" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -7,8 +7,6 @@ const { getMyPlaylist } = require('./linx-commands')
const chalk = require('chalk')
const owners = ['notnull']
const helpers = ['notnull', 'rfa', 'substack']
const autojoin = ['#anarchybots']
const host = process.env.HOST || 'localhost'
@ -59,7 +57,7 @@ const handleQuit = event => {
}
const handleReset = event => {
if (!helpers.includes(event.nick)) return
if (!owners.includes(event.nick)) return
reset(event)
}

View File

@ -53,7 +53,6 @@ const addAllPlaylists = async event => {
).then(() => {
shuffleAllPlaylists()
play()
return event.reply('Successfully reset playlists.')
})
} catch (e) {
return handleError(e, event)