A little more grace for fast falling (vacc).

This commit is contained in:
asofold 2013-01-14 02:09:31 +01:00
parent 5879fba502
commit e05275fd73

View File

@ -590,7 +590,7 @@ public class SurvivalFly extends Check {
final float sc2 = sum.bucketScore(2);
final double diff = sc1 - sc2;
if (diff > 0 || value > -1.3 && diff == 0) {
if (value < -1.3 && (Math.abs(diff) < Math.abs(value) || sc2 < - 10)){
if (value < -1.1 && (Math.abs(diff) < Math.abs(value) || sc2 < - 10)){
tags.add(tag+"grace");
return 0;
}