From 2ca68a34d2fdf91ec2247c0a42df58ded2c60ac0 Mon Sep 17 00:00:00 2001 From: ChocoTaco1 Date: Thu, 2 Apr 2020 21:37:38 -0400 Subject: [PATCH] Update zDarkTigerStats.cs Don't include chaingun/missles in midair category --- Classic/scripts/autoexec/zDarkTigerStats.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Classic/scripts/autoexec/zDarkTigerStats.cs b/Classic/scripts/autoexec/zDarkTigerStats.cs index 5a8688d..1bd31c9 100644 --- a/Classic/scripts/autoexec/zDarkTigerStats.cs +++ b/Classic/scripts/autoexec/zDarkTigerStats.cs @@ -2941,8 +2941,7 @@ function DefaultGame::postGameStats(%game,%client){ //stats to add up at the end %client.missileScore + %client.mineScore; - %client.totalMA = %client.cgMA + - %client.discMA + + %client.totalMA = %client.discMA + %client.grenadeMA + %client.laserMA + %client.mortarMA + @@ -2950,7 +2949,6 @@ function DefaultGame::postGameStats(%game,%client){ //stats to add up at the end %client.plasmaMA + %client.blasterMA + %client.hGrenadeMA + - %client.missileMA + %client.mineMA; %client.killAir = %client.cgKillAir + @@ -2965,7 +2963,7 @@ function DefaultGame::postGameStats(%game,%client){ //stats to add up at the end %client.blasterKillAir + %client.mineKillAir; - %client.deathAir = %client.cgDeathAir + + %client.deathAir = %client.cgDeathAir + %client.discDeathAir + %client.hGrenadeDeathAir + %client.grenadeDeathAir +