mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
fix(Core): Activate creatures and objects during opening cinematics (#4045)
Co-authored-by: Si1ker <55638679+Sombranator@users.noreply.github.com> Co-authored-by: Stefano Borzì <stefanoborzi32@gmail.com>
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1610763406658790400');
|
||||
|
||||
DROP TABLE IF EXISTS `cinematiccamera_dbc`;
|
||||
CREATE TABLE `cinematiccamera_dbc`
|
||||
(
|
||||
`ID` INT NOT NULL DEFAULT '0',
|
||||
`model` varchar(100) NULL,
|
||||
`soundEntry` INT NOT NULL DEFAULT '0',
|
||||
`locationX` FLOAT NOT NULL DEFAULT '0',
|
||||
`locationY` FLOAT NOT NULL DEFAULT '0',
|
||||
`locationZ` FLOAT NOT NULL DEFAULT '0',
|
||||
`rotation` FLOAT NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Cinematic camera DBC';
|
||||
|
||||
Reference in New Issue
Block a user