misc.poll: fix typo
This commit is contained in:
parent
ee3fa2dccd
commit
e4bc6d2136
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ poll.callback = async function (msg, line, topic, ...options) {
|
|||
if (arrOptions.length < 2) return "A minimum of two options are required.";
|
||||
|
||||
const reactions = [];
|
||||
let displayString = `**${msg.author.username}#${msg.aughtor.discriminator}** has started a poll:\n**__${topic}__**\n`;
|
||||
let displayString = `**${msg.author.username}#${msg.author.discriminator}** has started a poll:\n**__${topic}__**\n`;
|
||||
for (let i = 0; i < arrOptions.length; i++) {
|
||||
displayString +=
|
||||
(i === 9 ? "\ud83d\udd1f" : `${i + 1}\u20e3`) +
|
||||
|
|
Loading…
Reference in a new issue