From aa50418c55cc5745c547c13e28fa678c412026c1 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 19 Apr 2016 17:21:57 +0200 Subject: [PATCH] Capitalizza gli username --- mifia.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mifia.py b/mifia.py index 208075f9..8732f389 100644 --- a/mifia.py +++ b/mifia.py @@ -82,7 +82,7 @@ class Game: :param fusername: Nome utente da cercare """ for player in self.players: - if player.username == fusername: + if player.username == fusername.capitalize(): return player else: return None @@ -247,7 +247,7 @@ while True: except ValueError: g = None if g is not None: - if xtra[1] == "SPECIAL": + if xtra[1].capitalize() == "special": if g.findid(t['from']['id']).role == 1 and g.findid(t['from']['id']).special: target = g.findusername(xtra[2]) if target is not None: @@ -266,7 +266,7 @@ while True: elif target.role == 2: p.message(target.username + " è un \U0001F46E Detective.") p.special = False - elif xtra[1] == "CHAT": + elif xtra[1].capitalize() == "chat": if g.findid(t['from']['id']).role == 1: g.evilmessage(xtra[2]) else: @@ -275,7 +275,7 @@ while True: p = Player() p.telegramid = t['from']['id'] # Qui crasha se non è stato impostato un username. Fare qualcosa? - p.username = t['from']['username'] + p.username = t['from']['username'].capitalize() # Assegnazione dei ruoli r = random.randrange(0, 100) # Spiegare meglio cosa deve fare ogni ruolo?