diff options
Diffstat (limited to 'html/pages/match_info.php')
-rwxr-xr-x | html/pages/match_info.php | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/html/pages/match_info.php b/html/pages/match_info.php index 7645077..31edc2d 100755 --- a/html/pages/match_info.php +++ b/html/pages/match_info.php @@ -11,6 +11,7 @@ echo ' </tbody></table>
<br>';
include("pages/match_info_server.php");
+include("pages/match_info_charts.php");
$GLOBALS['gid'] = $gid;
$_GLOBALS['gid'] = $gid;
@@ -23,18 +24,18 @@ switch($real_gamename) { case "Assault (insta)":
include("pages/match_info_ass.php");
break;
-
+
case "Capture the Flag":
case "Capture the Flag (insta)":
include("pages/match_info_ctf.php");
teamstats($mid, 'Match Summary');
break;
-
+
case "Domination":
case "Domination (insta)":
teamstats($mid, 'Match Summary', 'dom_cp', 'Dom Pts');
break;
-
+
case "JailBreak":
case "JailBreak (insta)":
teamstats($mid, 'Match Summary', 'ass_obj', 'Team Releases');
@@ -43,6 +44,13 @@ switch($real_gamename) { case "Bunny Track":
include("pages/match_info_bt.php");
break;
+
+ case "Tournament DeathMatch":
+ case "Tournament Team Game":
+ case "Tournament DeathMatch (insta)":
+ case "Tournament Team Game (insta)":
+ teamstats($mid, 'Match Summary');
+ break;
case "Extended Last Man Standing":
case "Extended Last Man Standing (insta)":
@@ -62,6 +70,7 @@ switch($real_gamename) { teamstats($mid, 'Player Summary');
}
}
+
if ($real_gamename == "Assault" or $real_gamename== "Assault (insta)") {
include("pages/match_info_other2.php");
@@ -74,4 +83,4 @@ if ($real_gamename == "Capture the Flag" or $real_gamename== "Capture the Flag ( include("pages/match_report.php");
}
-?>
+?>
\ No newline at end of file |