I am trying to make a command that requires the "User" input, and I want it to send a message if the "User" isn't defined. Here's my code:
    if (User == True):
        await ctx.channel.send(f' {ctx.author.mention}! You got a {randRoll}! And {User} got a {randRoll2}!')
    else:
        await ctx.channel.send(f' {ctx.author.mention} You need to tell me who you want to battle!')
