mirror of
https://github.com/azerothcore/mod-anticheat.git
synced 2026-01-13 00:58:35 +00:00
Update (detection): New Detection No Fall Damage
New detection No Fall Damage Hack. Its when players use external apps to prevent fall damage from registering. New conf: Anticheat.NoFallDamage = 1 Autoupdate feature should apply the sql update automatically to add the new column. If not then apply it manually from either the sql\characters folder or the sql\updates folder
This commit is contained in:
6
sql/updates/characters/2022_08_12_00.sql
Normal file
6
sql/updates/characters/2022_08_12_00.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
-- run on character db
|
||||
ALTER TABLE `daily_players_reports`
|
||||
ADD COLUMN `no_fall_damage_reports` BIGINT UNSIGNED NOT NULL DEFAULT 0 AFTER `antiknockback_reports`;
|
||||
|
||||
ALTER TABLE `players_reports_status`
|
||||
ADD COLUMN `no_fall_damage_reports` BIGINT UNSIGNED NOT NULL DEFAULT 0 AFTER `antiknockback_reports`;
|
||||
Reference in New Issue
Block a user