From 603e636daf826ed97fc4beb5f4753ea4d37096c3 Mon Sep 17 00:00:00 2001 From: ChocoTaco Date: Fri, 15 Mar 2019 02:16:22 -0400 Subject: [PATCH] Update DMGame.cs --- Classic/scripts/DMGame.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classic/scripts/DMGame.cs b/Classic/scripts/DMGame.cs index 123dbf2..302e015 100644 --- a/Classic/scripts/DMGame.cs +++ b/Classic/scripts/DMGame.cs @@ -369,7 +369,7 @@ function DMGame::recalcScore(%game, %client) if (%killValue - %deathValue == 0) %client.efficiency = %suicideValue; else - %client.efficiency = ((%killValue * %killValue) / (%killValue - %deathValue)) + (%suicideValue + %bigGameValue); + %client.efficiency = ((%killValue * %killValue) / (%killValue - (%deathValue + %suicideValue))) + %bigGameValue; %client.score = mFloatLength(%client.efficiency, 1); messageClient(%client, 'MsgYourScoreIs', "", %client.score);