fix(DB/Warden): New checks (Detects PQR) (#16163)

* add(DB/Warden): New checks (Detects PQR)

* Update warden_pqr.sql

* Update ID.sql
This commit is contained in:
Julio A. Leyva Osorio
2023-05-13 13:54:29 -04:00
committed by GitHub
parent ea3e6e8f3b
commit 0e309173e4

View File

@@ -0,0 +1,4 @@
DELETE FROM `warden_checks` WHERE `id` IN (795,796);
INSERT INTO `warden_checks` (`id`, `type`, `data`, `str`, `address`, `length`, `result`, `comment`) VALUES
(795, 139, NULL, 'local f=DEFAULT_CHAT_FRAME for i=1,f:GetNumMessages() do if (f:GetMessageInfo(i)):find("Rotation Mode Disable") then return true end end', NULL, NULL, NULL, 'Detects PQR'),
(796, 139, NULL, 'local f=DEFAULT_CHAT_FRAME for i=1,f:GetNumMessages() do if (f:GetMessageInfo(i)):find("Rotation Mode Enable") then return true end end', NULL, NULL, NULL, 'Detects PQR');