aboutsummaryrefslogtreecommitdiff
path: root/bot/src/commands/ask.js
diff options
context:
space:
mode:
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)]}**`
);
}
};