diff options
| author | Meji <alvaro.megias@outlook.com> | 2024-05-04 13:20:13 +0200 |
|---|---|---|
| committer | Ovahlord <dreadkiller@gmx.de> | 2024-06-20 01:07:04 +0200 |
| commit | 889abca362de2949ab2fbda28741f8275e6f173b (patch) | |
| tree | cb87c93e04a90044ea4ddc6b1220bd32de0e6eb8 /sql | |
| parent | 1334844ad86b7b9d153dcd914bcc0ba036ee6d7a (diff) | |
Core/AreaTriggers: Fix triggering of client areatriggers for some shapes
(cherry picked from commit b070e63fa867f7f25e73e9ef3aafbe18902a50e9)
# Conflicts:
# sql/updates/auth/cata_classic/2024_05_27_00_hotfixes.sql
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/cata_classic/2024_06_20_00_hotfixes_2024_05_27_00_hotfixes.sql | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/cata_classic/2024_06_20_00_hotfixes_2024_05_27_00_hotfixes.sql b/sql/updates/hotfixes/cata_classic/2024_06_20_00_hotfixes_2024_05_27_00_hotfixes.sql new file mode 100644 index 00000000000..dae069efc75 --- /dev/null +++ b/sql/updates/hotfixes/cata_classic/2024_06_20_00_hotfixes_2024_05_27_00_hotfixes.sql @@ -0,0 +1,45 @@ +-- +-- Table structure for table `location` +-- +DROP TABLE IF EXISTS `location`; +CREATE TABLE `location` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `PosX` float NOT NULL DEFAULT '0', + `PosY` float NOT NULL DEFAULT '0', + `PosZ` float NOT NULL DEFAULT '0', + `Rot1` float NOT NULL DEFAULT '0', + `Rot2` float NOT NULL DEFAULT '0', + `Rot3` float NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Table structure for table `path` +-- +DROP TABLE IF EXISTS `path`; +CREATE TABLE `path` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `Type` tinyint unsigned NOT NULL DEFAULT '0', + `SplineType` tinyint unsigned NOT NULL DEFAULT '0', + `Red` tinyint unsigned NOT NULL DEFAULT '0', + `Green` tinyint unsigned NOT NULL DEFAULT '0', + `Blue` tinyint unsigned NOT NULL DEFAULT '0', + `Alpha` tinyint unsigned NOT NULL DEFAULT '0', + `Flags` tinyint unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; + +-- +-- Table structure for table `path_node` +-- +DROP TABLE IF EXISTS `path_node`; +CREATE TABLE `path_node` ( + `ID` int unsigned NOT NULL DEFAULT '0', + `PathID` smallint unsigned NOT NULL DEFAULT '0', + `Sequence` smallint NOT NULL DEFAULT '0', + `LocationID` int NOT NULL DEFAULT '0', + `VerifiedBuild` int NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
