From: Matteo Nastasi (mop) <nastasi@alternativeoutput.it>
Date: Sat, 12 Dec 2009 08:39:40 +0000 (+0000)
Subject: from mult *= 2 to mult += 1
X-Git-Tag: 3.0.0~10
X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=commitdiff_plain;h=bc0b7b844ae5b31058b87b786e5164f2de8c01f2;p=brisk.git

from mult *= 2 to mult += 1
---

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);