fix line break

This commit is contained in:
Lamp 2021-09-15 15:45:06 -07:00
parent 752ce397de
commit 46f94fe075

@ -57,5 +57,5 @@ async function t(i, target_lang) {
var output_romaji = await kuroshiro.convert(translation, {to: "romaji", mode: "spaced"});
} catch (error) {}
}
await i.editReply(`${text}\n${input_romaji ? `\n${input_romaji}` : ''}${translation.text}${output_romaji ? `\n${output_romaji}` : ''}`);
await i.editReply(`${text}${input_romaji ? `\n${input_romaji}` : ''}\n${translation.text}${output_romaji ? `\n${output_romaji}` : ''}`);
}