Skip to content
This repository was archived by the owner on Nov 19, 2017. It is now read-only.

Commit d1d7dcb

Browse files
committed
Lets just spam my console rq here
1 parent 81bd90b commit d1d7dcb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

commands/tags/list-all.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,11 @@ module.exports = class TagListAllCommand extends Command {
3131
.map(tag => tag.name)
3232
.sort()
3333
.join(', ');
34+
console.log(allTags); // eslint-disable-line
3435
/* eslint-disable newline-per-chained-call */
3536
return msg.say(stripIndents`**❯ All tags:**
3637
${allTags ? allTags : `${msg.guild.name} has no tags.`}
37-
`, { split: true, char: ',' });
38+
`, { split: true, char: ', ' });
3839
/* eslint-disable newline-per-chained-call */
3940
}
4041
};

0 commit comments

Comments
 (0)