XeroAntiCheat v1.0.8 bug fixes

- SpiderCheck: fixed Location mutation bug - bodyBlock was reading y-1 (same as feetBlock) and headBlock was reading y instead of y+1. Now uses block coordinates directly.
- ConfigManager: decay task no longer reads YamlConfiguration from background thread. decayRate is now volatile and refreshed on reload from main thread only.
- JesusCheck, SpeedCheck, NoFallCheck: loc.subtract() now uses .clone() to prevent silent Location mutation.
- VelocityCheck: decrementVelocityCheckTicks() moved past the minExpected threshold check to avoid consuming a tick on packets that are immediately discarded.
This commit is contained in:
2026-03-15 03:41:33 -03:00
parent daccfedae6
commit 38ab1abaf1
15 changed files with 16 additions and 846 deletions

19
.gitignore vendored
View File

@@ -1,4 +1,4 @@
# ---> Java
# Java
# Compiled class file
*.class
@@ -11,7 +11,7 @@
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
# Package Files
*.jar
*.war
*.nar
@@ -20,7 +20,20 @@
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
# virtual machine crash logs
hs_err_pid*
replay_pid*
# Eclipse
.classpath
.project
.settings/
.factorypath
# IntelliJ IDEA
.idea/
*.iml
# Maven
dependency-reduced-pom.xml
target/