mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 02:25:38 +01:00
Core/Vehicles: implement vehicle seat addon table to allow us to specify orientation values for vehicle seat attachment coordinates.
* added seat template addon data for Ozumat in Throne of the Tides
This commit is contained in:
14
sql/updates/world/custom/custom_2019_01_18_00_world.sql
Normal file
14
sql/updates/world/custom/custom_2019_01_18_00_world.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
DROP TABLE IF EXISTS `vehicle_seat_addon`;
|
||||
CREATE TABLE `vehicle_seat_addon`(
|
||||
`SeatID` MEDIUMINT(8) UNSIGNED NOT NULL COMMENT 'VehicleSeat.dbc identifier',
|
||||
`Angle` FLOAT UNSIGNED NOT NULL COMMENT 'Seat angle override field',
|
||||
PRIMARY KEY (`SeatID`)
|
||||
);
|
||||
|
||||
DELETE FROM `vehicle_seat_addon` WHERE `SeatID` IN (8372, 8450, 8451, 8453, 8426);
|
||||
INSERT INTO `vehicle_seat_addon` (`SeatID`, `Angle`) VALUES
|
||||
(8372, 180),
|
||||
(8426, 180),
|
||||
(8450, 180),
|
||||
(8451, 180),
|
||||
(8453, 180);
|
||||
Reference in New Issue
Block a user