mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
Merge commit 'origin/master' into 320
Conflicts: src/game/MovementHandler.cpp src/game/Player.cpp
This commit is contained in:
commit
f07363e9e0
218 changed files with 708 additions and 860 deletions
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
DROP TABLE IF EXISTS `character_db_version`;
|
||||
CREATE TABLE `character_db_version` (
|
||||
`required_8104_01_characters` bit(1) default NULL
|
||||
`required_8339_02_characters_character_battleground_data` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
|
||||
|
||||
--
|
||||
|
|
@ -232,13 +232,6 @@ CREATE TABLE `characters` (
|
|||
`death_expire_time` bigint(20) unsigned NOT NULL default '0',
|
||||
`taxi_path` text,
|
||||
`arena_pending_points` int(10) UNSIGNED NOT NULL default '0',
|
||||
`bgid` int(10) unsigned NOT NULL default '0',
|
||||
`bgteam` int(10) unsigned NOT NULL default '0',
|
||||
`bgmap` int(10) unsigned NOT NULL default '0',
|
||||
`bgx` float NOT NULL default '0',
|
||||
`bgy` float NOT NULL default '0',
|
||||
`bgz` float NOT NULL default '0',
|
||||
`bgo` float NOT NULL default '0',
|
||||
PRIMARY KEY (`guid`),
|
||||
KEY `idx_account` (`account`),
|
||||
KEY `idx_online` (`online`),
|
||||
|
|
@ -346,6 +339,35 @@ LOCK TABLES `character_aura` WRITE;
|
|||
/*!40000 ALTER TABLE `character_aura` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_battleground_data`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `character_battleground_data`;
|
||||
CREATE TABLE `character_battleground_data` (
|
||||
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
|
||||
`instance_id` int(11) unsigned NOT NULL default '0',
|
||||
`team` int(11) unsigned NOT NULL default '0',
|
||||
`join_x` float NOT NULL default '0',
|
||||
`join_y` float NOT NULL default '0',
|
||||
`join_z` float NOT NULL default '0',
|
||||
`join_o` float NOT NULL default '0',
|
||||
`join_map` int(11) NOT NULL default '0',
|
||||
`taxi_start` int(11) NOT NULL default '0',
|
||||
`taxi_end` int(11) NOT NULL default '0',
|
||||
`mount_spell` int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
|
||||
|
||||
--
|
||||
-- Dumping data for table `character_battleground_data`
|
||||
--
|
||||
|
||||
LOCK TABLES `character_battleground_data` WRITE;
|
||||
/*!40000 ALTER TABLE `character_battleground_data` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_battleground_data` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_declinedname`
|
||||
--
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ DROP TABLE IF EXISTS `db_version`;
|
|||
CREATE TABLE `db_version` (
|
||||
`version` varchar(120) default NULL,
|
||||
`creature_ai_version` varchar(120) default NULL,
|
||||
`required_8310_01_mangos_spell_proc_event` bit(1) default NULL
|
||||
`required_8342_01_mangos_spell_proc_event` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
|
||||
|
||||
--
|
||||
|
|
@ -17832,6 +17832,7 @@ INSERT INTO `spell_proc_event` VALUES
|
|||
(53380, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
||||
(53381, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
||||
(53382, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
||||
(53397, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
||||
(53486, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
||||
(53488, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
||||
(53501, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 0),
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
DROP TABLE IF EXISTS `realmd_db_version`;
|
||||
CREATE TABLE `realmd_db_version` (
|
||||
`required_7938_01_realmd_account` bit(1) default NULL
|
||||
`required_8332_01_realmd_realmcharacters` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
|
||||
|
||||
--
|
||||
|
|
@ -133,7 +133,8 @@ CREATE TABLE `realmcharacters` (
|
|||
`realmid` int(11) unsigned NOT NULL default '0',
|
||||
`acctid` bigint(20) unsigned NOT NULL,
|
||||
`numchars` tinyint(3) unsigned NOT NULL default '0',
|
||||
PRIMARY KEY (`realmid`,`acctid`)
|
||||
PRIMARY KEY (`realmid`,`acctid`),
|
||||
KEY (acctid)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Realm Character Tracker';
|
||||
|
||||
--
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue