diff options
| author | r00ty-tc <r00ty-tc@users.noreply.github.com> | 2016-04-27 16:53:18 +0200 |
|---|---|---|
| committer | joschiwald <joschiwald.trinity@gmail.com> | 2017-02-19 14:47:20 +0100 |
| commit | 8a71e4255ed253b7c4c8fe184c5f43f03d2b1b88 (patch) | |
| tree | 64b46c140d229da43df21707c3b94e88dcda9008 /sql/updates | |
| parent | 438d090c8db0ede966093f8bc9cf7f1e63b4b65e (diff) | |
[Core/Maps] Activate creatures and objects during opening cinematics and other flyby cameras (sunwell etc).
Requires re-running map extractor to extract camera m2 files from data
files. These are very small.
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/hotfixes/master/2017_02_18_00_hotfixes.sql | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2017_02_18_00_hotfixes.sql b/sql/updates/hotfixes/master/2017_02_18_00_hotfixes.sql new file mode 100644 index 00000000000..2c814698f2b --- /dev/null +++ b/sql/updates/hotfixes/master/2017_02_18_00_hotfixes.sql @@ -0,0 +1,28 @@ +-- +-- Table structure for table `cinematic_camera` +-- + +DROP TABLE IF EXISTS `cinematic_camera`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cinematic_camera` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Model` text, + `OriginX` float NOT NULL DEFAULT '0', + `OriginY` float NOT NULL DEFAULT '0', + `OriginZ` float NOT NULL DEFAULT '0', + `OriginFacing` float NOT NULL DEFAULT '0', + `SoundID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cinematic_camera` +-- + +LOCK TABLES `cinematic_camera` WRITE; +/*!40000 ALTER TABLE `cinematic_camera` DISABLE KEYS */; +/*!40000 ALTER TABLE `cinematic_camera` ENABLE KEYS */; +UNLOCK TABLES; |
