aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/auth
diff options
context:
space:
mode:
authortreeston <treeston.mmoc@gmail.com>2017-06-12 19:10:41 +0200
committerCarbenium <carbenium@outlook.com>2020-07-16 22:00:29 +0200
commit64d8b183de9c56e1350b7323167b509fe2c43805 (patch)
tree38e723ac8b864c086c354caed7f97a27d8543f53 /sql/updates/auth
parentd4caff90aab165973c862847a3e4e4b49ab3cad6 (diff)
Add new command 'npc showloot'. Does exactly what it says on the tin.
(cherry picked from commit 6f29aac93626ce37922c3c9a85d20b2e4d9d3bbc)
Diffstat (limited to 'sql/updates/auth')
-rw-r--r--sql/updates/auth/master/2017_06_12_02_auth.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/auth/master/2017_06_12_02_auth.sql b/sql/updates/auth/master/2017_06_12_02_auth.sql
new file mode 100644
index 00000000000..2b42dc39b12
--- /dev/null
+++ b/sql/updates/auth/master/2017_06_12_02_auth.sql
@@ -0,0 +1,7 @@
+DELETE FROM `rbac_permissions` WHERE `id`=865;
+INSERT INTO `rbac_permissions` (`id`,`name`) VALUES
+(865, 'Command: npc showloot');
+
+DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=865;
+INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES
+(197,865);