From 2a6f75aa721b7c9def920085cce7942cdc3c6ce2 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 28 Jun 2009 12:44:53 +0000 Subject: [PATCH] auth only define added --- web/Obj/brisk.phh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index 9802e4f..465e715 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -28,6 +28,7 @@ define(FTOK_PATH, "/var/lib/brisk"); define(LEGAL_PATH, "/tmp/legal_brisk"); define(PROXY_PATH, "/var/lib/brisk_proxy"); define(TABLES_N, 36); +define(TABLES_AUTH_N, 4); define(PLAYERS_N, 3); define(MAX_POINTS, 5); define(MAX_PLAYERS, (20 + (PLAYERS_N * TABLES_N))); @@ -121,7 +122,7 @@ $G_false = FALSE; $G_lng = langtolng($G_lang); $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 ); -$G_brisk_version = "2.1.9 - trusty"; +$G_brisk_version = "2.2.0 - trusty"; /* MLANG: ALL THE INFO STRINGS IN brisk.phh */ $root_wellarr = array( 'it' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NOVITA\': bug della carta coperta risolto, assenso all\'apertura del tavolo non revocabile, multi-lingua quasi ultimato.', @@ -874,7 +875,7 @@ class Room { $this->table[$i]->auth_only = FALSE; } */ - if ($i < 12) + if ($i < TABLES_AUTH_N) $this->table[$i]->auth_only = TRUE; else $this->table[$i]->auth_only = FALSE; -- 2.17.1