aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/auth
diff options
context:
space:
mode:
authorOvalord <1Don7H4v3@m41L.com>2016-07-23 18:39:56 +0200
committerShauren <shauren.trinity@gmail.com>2016-07-23 18:39:56 +0200
commit79aafd5865f11b5ecdd2865829562b981652db75 (patch)
tree73b19b280e4b153e8ba10e4f459421d0cc9f6712 /sql/updates/auth
parent3b8cdd434133939cec1c7aaceb24fb7dc98000f9 (diff)
Core/Players: Initial work on demon hunters
* Added starting level and required level config options as well as rbac permission to ignore the requirements * Updated max power values for both demon hunter specs * Fixed a crash during DK and DH creation * Added playercreateinfo data for demon hunters Closes #17651
Diffstat (limited to 'sql/updates/auth')
-rw-r--r--sql/updates/auth/6.x/2016_07_23_01_auth.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/auth/6.x/2016_07_23_01_auth.sql b/sql/updates/auth/6.x/2016_07_23_01_auth.sql
new file mode 100644
index 00000000000..4ac99acee21
--- /dev/null
+++ b/sql/updates/auth/6.x/2016_07_23_01_auth.sql
@@ -0,0 +1,7 @@
+DELETE FROM `rbac_permissions` WHERE `id`= 12;
+INSERT INTO `rbac_permissions` (`id`,`name`) VALUES
+(12,'Skip character creation demon hunter min level check');
+
+DELETE FROM `rbac_linked_permissions` WHERE `linkedId`= 12;
+INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
+(194, 12);