From: Debugger Date: Fri, 3 May 2013 13:57:11 +0000 (+0200) Subject: wrong calculation fixed X-Git-Tag: xonotic-v0.8.0~347^2~5 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2f6e771bf6c03c2315877312581880405f1c8918;p=xonotic%2Fxonotic-data.pk3dir.git wrong calculation fixed --- diff --git a/qcsrc/client/scoreboard.qc b/qcsrc/client/scoreboard.qc index 77b3538c7..00a83383b 100644 --- a/qcsrc/client/scoreboard.qc +++ b/qcsrc/client/scoreboard.qc @@ -589,7 +589,7 @@ string HUD_GetField(entity pl, float field) case SP_NET: f = pl.(scores[SP_KILLS]); - f -= pl.(scores[SP_SUICIDES]); + f -= pl.(scores[SP_DEATHS]); if(f > 0) { hud_field_rgb = '0 1 0';