Нормальный вид для choice

This commit is contained in:
JonnyBro 2022-01-05 22:17:05 +05:00
parent 0d975abac8
commit e276c87683
2 changed files with 4 additions and 7 deletions

View file

@ -25,12 +25,9 @@ class Choice extends Command {
const m = await message.sendT("fun/choice:PROGRESS", null, false, false, "loading");
setTimeout(() => {
m.success("fun/choice:DONE", null, {
edit: true
});
const result = answers[parseInt(Math.floor(Math.random() * answers.length))];
message.channel.send({
content: "```" + result + "```"
m.success("fun/choice:DONE", { result }, {
edit: true
});
}, 1500);
}

View file

@ -4,6 +4,6 @@
"EXAMPLES": "{{prefix}}choice Вода/Огонь/Ветер",
"MISSING": "Укажите больше двух вариантов!\n(либо используйте команду `flip`)",
"EMPTY": "Кажется один из вариантов отсутствует... Попробуйте ещё раз!",
"PROGRESS": "Выбираю...",
"DONE": "Я выбрал:"
"PROGRESS": "Думаю...",
"DONE": "Я выбрал: **`{{result}}`**"
}