diff options
author | TymanWasTaken <tyman@tyman.tech> | 2021-05-17 15:39:16 -0400 |
---|---|---|
committer | TymanWasTaken <tyman@tyman.tech> | 2021-05-17 15:39:16 -0400 |
commit | 4309aa31de6431a0a8f2140238227ae5d8751c3c (patch) | |
tree | ba400b0b0a840706ba96c98f73e7d2d5ecbeca0b /src/commands/moulberry-bush | |
parent | b27d09d2e18a936fe727b2d4254cab7589f61f1f (diff) | |
download | tanzanite-4309aa31de6431a0a8f2140238227ae5d8751c3c.tar.gz tanzanite-4309aa31de6431a0a8f2140238227ae5d8751c3c.tar.bz2 tanzanite-4309aa31de6431a0a8f2140238227ae5d8751c3c.zip |
format
Diffstat (limited to 'src/commands/moulberry-bush')
-rw-r--r-- | src/commands/moulberry-bush/rule.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands/moulberry-bush/rule.ts b/src/commands/moulberry-bush/rule.ts index 63172d1..bd8b08a 100644 --- a/src/commands/moulberry-bush/rule.ts +++ b/src/commands/moulberry-bush/rule.ts @@ -142,7 +142,10 @@ export default class RuleCommand extends BotCommand { rulesEmbed.addField(`${rule}) ${foundRule.title}`, foundRule.description); } else { for (const curRule of this.rules) { - rulesEmbed.addField(`${this.rules.indexOf(curRule) + 1}) ${curRule.title}`, curRule.description); + rulesEmbed.addField( + `${this.rules.indexOf(curRule) + 1}) ${curRule.title}`, + curRule.description + ); } } if (!user) { |