aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorMeji <alvaro.megias@outlook.com>2024-06-23 20:41:18 +0200
committerfunjoker <funjoker109@gmail.com>2024-06-24 20:11:30 +0200
commite3f27a5bebe1472841c4bb6d6d60831f50f89042 (patch)
tree9d851b50bba49a2da97362fb91e7a0949d26ecd1 /sql
parent1c74da00521fd81d9a965be90b8edb273287a28c (diff)
Core/AreaTriggers: Check actionset flags for client areatriggers to allow some areatriggers to trigger while dead (#30042)
(cherry picked from commit d51d6b0abeec25a7c7fd4903ddbca0124ee8c723)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/cata_classic/2024_06_24_00_hotfixes_2024_06_23_00_hotfixes.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/cata_classic/2024_06_24_00_hotfixes_2024_06_23_00_hotfixes.sql b/sql/updates/hotfixes/cata_classic/2024_06_24_00_hotfixes_2024_06_23_00_hotfixes.sql
new file mode 100644
index 00000000000..0aa04fbc9a1
--- /dev/null
+++ b/sql/updates/hotfixes/cata_classic/2024_06_24_00_hotfixes_2024_06_23_00_hotfixes.sql
@@ -0,0 +1,7 @@
+DROP TABLE IF EXISTS `area_trigger_action_set`;
+CREATE TABLE `area_trigger_action_set` (
+ `ID` int unsigned NOT NULL DEFAULT '0',
+ `Flags` int NOT NULL DEFAULT '0',
+ `VerifiedBuild` int NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`VerifiedBuild`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;