Test
This commit is contained in:
parent
5dba3a9caf
commit
b97cdca166
3 changed files with 9 additions and 3 deletions
7
Garou.py
7
Garou.py
|
@ -5,10 +5,10 @@ game = 0
|
||||||
djoueurs = 0
|
djoueurs = 0
|
||||||
joueurs = str("0")
|
joueurs = str("0")
|
||||||
|
|
||||||
def is_joueurs(author):
|
def is_joueurs(sender):
|
||||||
global joueurs
|
global joueurs
|
||||||
for i in range(len(joueurs)):
|
for i in range(len(joueurs)):
|
||||||
if author == joueurs[i]:
|
if ctx == joueurs[i]:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
@ -57,7 +57,8 @@ class Garou:
|
||||||
#Commande de test
|
#Commande de test
|
||||||
@commands.command(pass_content=True)
|
@commands.command(pass_content=True)
|
||||||
async def gtest(self, ctx):
|
async def gtest(self, ctx):
|
||||||
if is_joueurs(ctx.message.author) == True:
|
sender = ctx.message.author
|
||||||
|
if is_joueurs(sender) == True:
|
||||||
await self.bot.say("Vous ete bien un joueurs !")
|
await self.bot.say("Vous ete bien un joueurs !")
|
||||||
|
|
||||||
elif gm == ctx.message.author:
|
elif gm == ctx.message.author:
|
||||||
|
|
Binary file not shown.
|
@ -30,6 +30,11 @@ D
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Début de l'enregistrement des réactions.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Début de l'enregistrement des réactions.
|
Début de l'enregistrement des réactions.
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue