mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2025-01-29 19:01:22 +01:00
A little more grace for fast falling (vacc).
This commit is contained in:
parent
5879fba502
commit
e05275fd73
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user