diff options
| author | Shauren <shauren.trinity@gmail.com> | 2022-02-24 23:16:55 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-02-24 23:16:55 +0100 |
| commit | 9f30afe3528441571f89cb2e1775c756774fa0cd (patch) | |
| tree | 389fbe1f77dced54fa1aeb475584951f34ff9cfe /sql | |
| parent | f96c8cc39ba15d7c9f0784428b9bbcbca4665370 (diff) | |
Core/PacketIO: Updated packet structures to 9.2.0
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2022_02_22_00_world.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_02_22_00_world.sql b/sql/updates/world/master/2022_02_22_00_world.sql new file mode 100644 index 00000000000..91036b68b79 --- /dev/null +++ b/sql/updates/world/master/2022_02_22_00_world.sql @@ -0,0 +1,14 @@ +ALTER TABLE `areatrigger_create_properties` + ADD `ShapeData6` float NOT NULL DEFAULT 0 AFTER `ShapeData5`, + ADD `ShapeData7` float NOT NULL DEFAULT 0 AFTER `ShapeData6`; + +ALTER TABLE `areatrigger_template` + ADD `Data6` float NOT NULL DEFAULT 0 AFTER `Data5`, + ADD `Data7` float NOT NULL DEFAULT 0 AFTER `Data6`; + +ALTER TABLE `gossip_menu_option` ADD `Language` int unsigned NOT NULL DEFAULT 0 AFTER `OptionNpcFlag`; + +ALTER TABLE `playerchoice` + ADD `CloseSoundKitId` int unsigned NOT NULL DEFAULT 0 AFTER `SoundKitId`, + ADD `Duration` bigint NOT NULL DEFAULT 0 AFTER `CloseSoundKitId`, + ADD `PendingChoiceText` VARCHAR(255) NOT NULL DEFAULT '' AFTER `Duration`; |
