Core/Misc: Add permission that allows player to be AFK on the battleground.

This commit is contained in:
r4dish
2024-01-06 11:37:31 +02:00
committed by Shauren
parent 1dc9b83a25
commit 554fc8eee0
4 changed files with 13 additions and 2 deletions

View File

@@ -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);