diff --git a/players.db b/players.db index 54df649..07c3a94 100644 Binary files a/players.db and b/players.db differ diff --git a/roulette.py b/roulette.py index 9cf2d2f..8ae87be 100644 --- a/roulette.py +++ b/roulette.py @@ -78,7 +78,7 @@ def init_db(): rows = cur_mysql.fetchall() print('players :') for row in rows: - if row['prenom'] + ' ' + row['nom'] in IMMUNITY: + if row['prenom'] + ' ' + row['nom'] not in IMMUNITY: print(row) cur_sqlite.execute("""insert into players values (?,?,?,?)""", \ ((row["id"]), row["prenom"], row["nom"], 0))