From 0999c3e264d85b8dc5a255f1d01b75fe7e2ef2ee Mon Sep 17 00:00:00 2001 From: Axel Date: Sun, 15 Mar 2026 13:39:21 -0300 Subject: [PATCH] Tune: Increase buffer and VL thresholds to reduce false positives - Timer: buffer_ticks 2->10, max_packets 22->25, kick_vl 25->50 - Jesus: buffer_ticks 3->15, kick_vl 25->50 - Fly: fall_buffer 10->15, ground_desync 3->5, kick_vl 25->50 --- src/main/resources/config.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index aae9c12..8f181de 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -63,12 +63,12 @@ checks: # Teleport player back to last safe location when flagged setback: false # Number of ticks to allow for stepping/slabs - fall_buffer: 10 + fall_buffer: 15 # Maximum ground desync ticks before flagging - ground_desync_threshold: 3 - warn_vl: 10 - kick_vl: 25 - tempban_vl: 50 + ground_desync_threshold: 5 + warn_vl: 25 + kick_vl: 50 + tempban_vl: 75 permban_vl: 100 # ---------------------------------------- @@ -80,10 +80,10 @@ checks: # Teleport player back to last safe location when flagged setback: false # Number of consecutive ticks to flag before VL is added - buffer_ticks: 3 - warn_vl: 10 - kick_vl: 25 - tempban_vl: 50 + buffer_ticks: 15 + warn_vl: 25 + kick_vl: 50 + tempban_vl: 75 permban_vl: 100 # ---------------------------------------- @@ -106,14 +106,14 @@ checks: timer: enabled: true # Number of consecutive ticks exceeding max packets before flagging - buffer_ticks: 2 + buffer_ticks: 10 # Maximum packets per second allowed - max_packets_per_second: 22 + max_packets_per_second: 25 # Milliseconds of no packets before flagging blink blink_threshold_ms: 500 - warn_vl: 10 - kick_vl: 25 - tempban_vl: 50 + warn_vl: 25 + kick_vl: 50 + tempban_vl: 75 permban_vl: 100 # ----------------------------------------