From a70993d6d20b4668556a8792ecd952d84a7e6939 Mon Sep 17 00:00:00 2001 From: proller Date: Sat, 13 Jul 2013 04:10:16 +0400 Subject: [PATCH] Masterserver mods fix --- util/master/list.js | 2 +- util/master/master.cgi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/util/master/list.js b/util/master/list.js index 9e033b609..15319e1c9 100644 --- a/util/master/list.js +++ b/util/master/list.js @@ -51,7 +51,7 @@ function success(r) { h += '' + e(s.clients) + (s.clients_max ? '/' + e(s.clients_max) : '') + (s.clients_top ? ', ' + s.clients_top : '') + ''; var mods; if (s.mods && jQuery.isArray(s.mods)) { - mods = 1; + mods = s.mods.length; } h += '' + e(s.version) + ' ' + e(s.gameid); if (mods) { diff --git a/util/master/master.cgi b/util/master/master.cgi index 975fa94e2..cb4d164c4 100755 --- a/util/master/master.cgi +++ b/util/master/master.cgi @@ -235,7 +235,7 @@ sub request (;$) { $param->{first} ||= $old->{first} || $old->{time} || $param->{time}; $param->{clients_top} = $old->{clients_top} if $old->{clients_top} > $param->{clients}; $param->{clients_top} ||= $param->{clients} || 0; - $param->{mods} ||= $old->{mods} unless $param->{action} ~~ 'start'; + $param->{mods} ||= $old->{mods} if $old->{mods} and !($param->{action} ~~ 'start'); delete $param->{action}; $listk->{$param->{key}} = $param; #printlog Dumper $param;