Skip to content

Commit

Permalink
Fix (Closes #36)
Browse files Browse the repository at this point in the history
  • Loading branch information
ysdragon committed Jul 11, 2024
1 parent b88bcfd commit 4b866ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ let videos = videoFiles.map(file => {
console.log(`Available videos:\n${videos.map(m => m.name).join('\n')}`);

const status_idle = () => {
return new CustomStatus()
.setState('Watching Something!')
return new CustomStatus(new Client())
.setEmoji('📽')
.setState('Watching Something!')
}

const status_watch = (name) => {
return new CustomStatus()
.setState(`Playing ${name}...`)
return new CustomStatus(new Client())
.setEmoji('📽')
.setState(`Playing ${name}...`)
}

// ready event
Expand Down

0 comments on commit 4b866ff

Please sign in to comment.