From 554fc8eee0bcbb70acd012c04f6f02197c6d949c Mon Sep 17 00:00:00 2001 From: r4dish Date: Sat, 6 Jan 2024 11:37:31 +0200 Subject: Core/Misc: Add permission that allows player to be AFK on the battleground. --- sql/updates/auth/3.3.5/2024_01_06_01_auth.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sql/updates/auth/3.3.5/2024_01_06_01_auth.sql (limited to 'sql/updates') diff --git a/sql/updates/auth/3.3.5/2024_01_06_01_auth.sql b/sql/updates/auth/3.3.5/2024_01_06_01_auth.sql new file mode 100644 index 00000000000..f09d9139e4a --- /dev/null +++ b/sql/updates/auth/3.3.5/2024_01_06_01_auth.sql @@ -0,0 +1,7 @@ +-- +DELETE FROM `rbac_permissions` WHERE `id` = 53; +INSERT INTO `rbac_permissions` (`id`, `name`) VALUES (53, "Can be AFK on the battleground"); + +DELETE FROM `rbac_linked_permissions` WHERE `linkedId` = 53; +INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES +(193, 53); -- cgit v1.2.3