aboutsummaryrefslogtreecommitdiff
path: root/bot/src/commands/ask.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-03 11:42:27 -0500
committerAndrew Lee <andrew@alee14.me>2025-03-03 11:42:27 -0500
commitfd7f8eba960981482fabf350995bf753feebb176 (patch)
tree2bd0c85b09a04ecd8e1f20fc409eb4b8a22289a7 /bot/src/commands/ask.js
parentcf1382d88c5e3298923c8cb243b7bc5751e68b53 (diff)
downloadAleeBot-fd7f8eba960981482fabf350995bf753feebb176.tar.gz
AleeBot-fd7f8eba960981482fabf350995bf753feebb176.tar.bz2
AleeBot-fd7f8eba960981482fabf350995bf753feebb176.zip
More commands ported; Almost all 2.x features have been added
Diffstat (limited to 'bot/src/commands/ask.js')
-rw-r--r--bot/src/commands/ask.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/commands/ask.js b/bot/src/commands/ask.js
index fec0846..4193e92 100644
--- a/bot/src/commands/ask.js
+++ b/bot/src/commands/ask.js
@@ -27,7 +27,7 @@ export default {
];
return await interaction.reply(
- `<@${interaction.user.id}> asked:\n**${question}**\nMy answer:\n**${answers[Math.floor(Math.random() * answers.length)]}**`
+ `**${interaction.user.displayName}** asked:\n**${question}**\nMy answer:\n**${answers[Math.floor(Math.random() * answers.length)]}**`
);
}
};