mirror of
https://github.com/azerothcore/mod-anticheat.git
synced 2026-01-13 09:07:22 +00:00
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
7 lines
313 B
SQL
7 lines
313 B
SQL
-- 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`;
|