mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
fix missing semicolon
This commit is contained in:
parent
5009261839
commit
8fe40285e8
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ async function tictactoe(interaction, options = {}) {
|
|||
}
|
||||
|
||||
const foot = options.embedFoot ? { text: options.embedFoot } : { text: "Удачи =)" },
|
||||
user = interaction.user ? interaction.user : interaction.author
|
||||
user = interaction.user ? interaction.user : interaction.author;
|
||||
|
||||
const acceptEmbed = new EmbedBuilder()
|
||||
.setTitle(interaction.translate("fun/tictactoe:REQUEST_WAIT", {
|
||||
|
|
Loading…
Reference in a new issue