Change KABot buffer swing decrement from 0.25 to 0.05

Co-authored-by: funkemunky <30784509+funkemunky@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-20 18:13:21 +00:00
parent e4a1c463ec
commit c7746d77e5
@@ -24,7 +24,7 @@ public class KABot extends Check {
// Lower both buffers on each arm swing to prevent false positives for legitimate players.
// In vanilla 1.8.8, every attack is accompanied by a swing animation, so a legit player's
// attack count and swing count should be roughly equal (net-zero buffer change).
if(buffer > 0) buffer-=0.25f;
if(buffer > 0) buffer-= 0.05f;
if(buffer2 > 0) buffer2-= 0.25f;
};