@yotonick

Что не так, почему выдает эту ошибку?

@bot.command()
@commands.cooldown(1, 15, commands.BucketType.user)
async def btcbuy(ctx):
  money = await get_bank()
  users = await get_btc()
  if money[str(ctx.author.id)]['money'] >= 300:
    users[str(ctx.author.id)]['btc'] + 1
    money[str(ctx.author.id)]['money'] - 300
    write_json('btc.json', btc)
    embed = discord.Embed(
      title = "*Покупка BTC*", 
      description = f"**Вы успешно купили 1 Биткоин**",
      colour = 0xFFF000 # Желтый
    )
    embed.add_field(
      name = "Ваш баланс:", value = f"{money[str(ctx.author.id)]['btc']} Btc") 
    await ctx.send(embed = embed)
  else:
          await ctx.send(f"**Не хватает денег!**")

Не могу понять в чем ошибка:

discord.errors.HTTPException: 400 Bad Request (error code: 50006): Cannot send an empty message
  • Вопрос задан
  • 124 просмотра
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы