From e3f27a5bebe1472841c4bb6d6d60831f50f89042 Mon Sep 17 00:00:00 2001 From: Meji Date: Sun, 23 Jun 2024 20:41:18 +0200 Subject: Core/AreaTriggers: Check actionset flags for client areatriggers to allow some areatriggers to trigger while dead (#30042) (cherry picked from commit d51d6b0abeec25a7c7fd4903ddbca0124ee8c723) --- .../cata_classic/2024_06_24_00_hotfixes_2024_06_23_00_hotfixes.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sql/updates/hotfixes/cata_classic/2024_06_24_00_hotfixes_2024_06_23_00_hotfixes.sql (limited to 'sql') 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; -- cgit v1.2.3