diff options
| author | Meji <alvaro.megias@outlook.com> | 2024-06-23 20:41:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-23 20:41:18 +0200 |
| commit | d51d6b0abeec25a7c7fd4903ddbca0124ee8c723 (patch) | |
| tree | 9e291076766912259cc9d177176eee3beda0b6d3 /sql | |
| parent | 31bd3804e35f63915a5d6d669b31add6c82d7010 (diff) | |
Core/AreaTriggers: Check actionset flags for client areatriggers to allow some areatriggers to trigger while dead (#30042)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2024_06_23_00_hotfixes.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2024_06_23_00_hotfixes.sql b/sql/updates/hotfixes/master/2024_06_23_00_hotfixes.sql new file mode 100644 index 00000000000..0aa04fbc9a1 --- /dev/null +++ b/sql/updates/hotfixes/master/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; |
