From 81818cca72647ffcfd0e2729e490bf2cb2b211a1 Mon Sep 17 00:00:00 2001 From: Michael Andreen Date: Fri, 20 Feb 2009 17:43:26 +0100 Subject: [PATCH] Bash limit for score is actually 60% --- lib/NDWeb/Controller/Raids.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/NDWeb/Controller/Raids.pm b/lib/NDWeb/Controller/Raids.pm index db2618b..d2bc238 100644 --- a/lib/NDWeb/Controller/Raids.pm +++ b/lib/NDWeb/Controller/Raids.pm @@ -141,7 +141,7 @@ sub view : Local { if ($planet->{x} == $target->{x}){ $target->{style} = 'incluster'; } - $target->{scorebash} = 'bash' if ($target->{score}/$planet->{score} < 0.4); + $target->{scorebash} = 'bash' if ($target->{score}/$planet->{score} < 0.6); $target->{valuebash} = 'bash' if ($target->{value}/$planet->{value} < 0.4); #next if ($target->{score}/$planet->{score} < 0.4) && ($target->{value}/$planet->{value} < 0.4); } -- 2.39.2