From 323842ded8f7636f665f39d34d6a27a1ff5cc13b Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 13 Jul 2017 16:14:06 +0300 Subject: [PATCH] =?UTF-8?q?Aumentata=20la=20probabilit=C3=A0=20di=20terror?= =?UTF-8?q?ista=20nel=20preset=20Classico?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 9f8f855..308b1de 100644 --- a/main.py +++ b/main.py @@ -329,7 +329,7 @@ class Game: "Investigatore": math.floor(len(self.players) / 12) + 1, # 1 Detective ogni 12 giocatori "Corrotto": 0, "Angelo": math.floor(len(self.players) / 10) + 1, # 1 Angelo ogni 10 giocatori - "Terrorista": 1 if random.randrange(0, 100) > 70 else 0, # 30% di avere un terrorista + "Terrorista": 1 if random.randrange(0, 100) >= 50 else 0, # 50% di avere un terrorista "Derek": 0, "Disastro": 0, "Mamma": 0,