Skip to content
This repository has been archived by the owner on Aug 28, 2020. It is now read-only.

Commit

Permalink
Missing args in PieceStore tutorial (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandraghon authored and bdistin committed Sep 21, 2017
1 parent 4f33028 commit 242ecf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorials/PieceStores.md
Expand Up @@ -212,7 +212,7 @@ const Genre = require('../Genre');
module.exports = class extends Genre {

constructor(...args) {
super({
super(...args, {
description: 'Electronic Dance Music',
examples: [
'Skrillex',
Expand Down Expand Up @@ -260,4 +260,4 @@ Then we use it in our player class I completely made up earlier like so:
const nextSong = this.client.genres.get(this.guild.settings.genre).getNext(this);
// nextSong should now be a psudo random song based on the genre seeds and what has recently played
...
```
```

0 comments on commit 242ecf5

Please sign in to comment.