From 5fbb847fbb257dd67b8f2c993bd7d0a1ac97bf82 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Thu, 18 Aug 2011 14:11:51 +0200 Subject: [PATCH] fix a REALLY stupid bug in the weapon profiler analyzer --- misc/tools/weapon-profiler-analyzer.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tools/weapon-profiler-analyzer.pl b/misc/tools/weapon-profiler-analyzer.pl index dcab0a22..1c0415a4 100755 --- a/misc/tools/weapon-profiler-analyzer.pl +++ b/misc/tools/weapon-profiler-analyzer.pl @@ -128,7 +128,7 @@ sub Evaluate($) my %allweps; while(my ($k, $v) = each %$matrix) { - for(my ($k2, $v2) = each %$v) + while(my ($k2, $v2) = each %$v) { next if $k eq $k2; next if !$v2; -- 2.39.2