mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
DB/RBAC: fixed some permissions after a92bfb5505
This commit is contained in:
File diff suppressed because one or more lines are too long
11
sql/updates/auth/6.x/2016_09_03_01_auth.sql
Normal file
11
sql/updates/auth/6.x/2016_09_03_01_auth.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
DELETE FROM `rbac_permissions` WHERE `id` IN (841,842,843);
|
||||
INSERT INTO `rbac_permissions` (`id`, `name`) VALUES
|
||||
(841, 'Command: reload character_template'),
|
||||
(842, 'Command: reload quest_greeting'),
|
||||
(843, 'Command: debug send playscene');
|
||||
|
||||
DELETE FROM `rbac_linked_permissions` WHERE `linkedId` IN (841,842,843);
|
||||
INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
|
||||
(196, 841),
|
||||
(196, 842),
|
||||
(192, 843);
|
||||
3
sql/updates/world/6.x/2016_09_03_03_world.sql
Normal file
3
sql/updates/world/6.x/2016_09_03_03_world.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
UPDATE `command` SET `permission`=841 WHERE `name`='reload character_template';
|
||||
UPDATE `command` SET `permission`=842 WHERE `name`='reload quest_greeting';
|
||||
UPDATE `command` SET `permission`=843 WHERE `name`='debug send playscene';
|
||||
Reference in New Issue
Block a user