From bc0b7b844ae5b31058b87b786e5164f2de8c01f2 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sat, 12 Dec 2009 08:39:40 +0000 Subject: [PATCH] from mult *= 2 to mult += 1 --- web/briskin5/index_wr.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/briskin5/index_wr.php b/web/briskin5/index_wr.php index 48cc433..81922cf 100644 --- a/web/briskin5/index_wr.php +++ b/web/briskin5/index_wr.php @@ -165,7 +165,7 @@ else if ($user->stat == 'table') { log_wr(sprintf("GIOCO FINITO !!!")); - $table->mult *= 2; + $table->mult += 1; $table->old_reason = sprintf("Ha lasciato %s perché aveva al massimo 2 punti.", xcape($user->name)); $table->game_next(); @@ -278,7 +278,7 @@ else if ($user->stat == 'table') { log_wr(sprintf("GIOCO FINITO !!!")); $table->old_reason = "Hanno passato tutti."; - $table->mult *= 2; + $table->mult += 1; $table->game_next(); $table->game_init(&$bri->user); -- 2.17.1