Fixed small typo in fun, f-String in akuma.py

This commit is contained in:
Akumatic
2019-10-05 05:12:34 +02:00
parent 52655b0c4b
commit f31da623ed
2 changed files with 3 additions and 4 deletions

View File

@ -91,7 +91,7 @@ class Fun(commands.Cog):
e.color=discord.Color.blue()
com = random.choice(["r", "p", "s"])
e.add_field(name="You", value=emote[user], inline=True)
e.add_field(name="Computers", value=emote[com], inline=True)
e.add_field(name="Computer", value=emote[com], inline=True)
if (user == "r" and com == "p") or (user == "p" and com == "s") or (user == "s" and com == "r"):
e.add_field(name=":moyai::newspaper::scissors:", value="You lose")
elif (user == "r" and com == "s") or (user == "p" and com == "r") or (user == "s" and com == "p"):