aboutsummaryrefslogtreecommitdiff
path: root/src/commands/moulberry-bush/rule.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/moulberry-bush/rule.ts')
-rw-r--r--src/commands/moulberry-bush/rule.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/moulberry-bush/rule.ts b/src/commands/moulberry-bush/rule.ts
index a9414ea..63172d1 100644
--- a/src/commands/moulberry-bush/rule.ts
+++ b/src/commands/moulberry-bush/rule.ts
@@ -103,7 +103,7 @@ export default class RuleCommand extends BotCommand {
channel: 'guild',
slashCommandOptions: [
{
- type: ApplicationCommandOptionType.STRING,
+ type: ApplicationCommandOptionType.INTEGER,
name: 'rule',
description: 'The rule to show',
required: false
@@ -138,11 +138,11 @@ export default class RuleCommand extends BotCommand {
);
}
if (rule) {
- const foundRule = this.rules[rule];
- rulesEmbed.addField(foundRule.title, foundRule.description);
+ const foundRule = this.rules[rule - 1];
+ rulesEmbed.addField(`${rule}) ${foundRule.title}`, foundRule.description);
} else {
for (const curRule of this.rules) {
- rulesEmbed.addField(curRule.title, curRule.description);
+ rulesEmbed.addField(`${this.rules.indexOf(curRule) + 1}) ${curRule.title}`, curRule.description);
}
}
if (!user) {