aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/auth/3.3.5/2024_01_06_02_auth.sql10
-rw-r--r--sql/updates/world/3.3.5/2024_01_06_00_world.sql7
2 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/auth/3.3.5/2024_01_06_02_auth.sql b/sql/updates/auth/3.3.5/2024_01_06_02_auth.sql
new file mode 100644
index 00000000000..2e3b0616aa3
--- /dev/null
+++ b/sql/updates/auth/3.3.5/2024_01_06_02_auth.sql
@@ -0,0 +1,10 @@
+--
+DELETE FROM `rbac_permissions` WHERE `id` IN (884, 885);
+INSERT INTO `rbac_permissions` (`id`, `name`) VALUES
+(884, "Command: bg start"),
+(885, "Command: bg stop");
+
+DELETE FROM `rbac_linked_permissions` WHERE `linkedId` IN (884, 885);
+INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
+(197, 884),
+(197, 885);
diff --git a/sql/updates/world/3.3.5/2024_01_06_00_world.sql b/sql/updates/world/3.3.5/2024_01_06_00_world.sql
new file mode 100644
index 00000000000..57ffdac7986
--- /dev/null
+++ b/sql/updates/world/3.3.5/2024_01_06_00_world.sql
@@ -0,0 +1,7 @@
+--
+DELETE FROM `trinity_string` WHERE `entry` IN (395, 396);
+INSERT INTO `trinity_string` (`entry`,`content_default`) VALUES
+(395, '### USAGE: .bg start
+Skips battleground preparation time and starts the battle.'),
+(396, '### USAGE: .bg stop
+Immediately ends the battleground.');