[10119] Add model data for undead player that got lost for rev 10109

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2010-06-29 09:54:14 +02:00
parent cd0bbabf9a
commit b8942160be
5 changed files with 13 additions and 3 deletions

View file

@ -24,7 +24,7 @@ CREATE TABLE `db_version` (
`version` varchar(120) default NULL,
`creature_ai_version` varchar(120) default NULL,
`cache_id` int(10) default '0',
`required_10109_01_mangos_creature_model_info` bit(1) default NULL
`required_10119_01_mangos_creature_model_info` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
--
@ -978,6 +978,8 @@ INSERT INTO `creature_model_info` VALUES
(54, 0.3470, 1.5, 1, 53),
(55, 0.3890, 1.5, 0, 56),
(56, 0.3060, 1.5, 1, 55),
(57, 0.3830, 1.5, 0, 58),
(58, 0.3830, 1.5, 1, 57),
(59, 0.9747, 1.5, 0, 60),
(60, 0.8725, 1.5, 1, 59),
(1478, 0.3060, 1.5, 0, 1479),

View file

@ -0,0 +1,6 @@
ALTER TABLE db_version CHANGE COLUMN required_10109_01_mangos_creature_model_info required_10119_01_mangos_creature_model_info bit;
DELETE FROM creature_model_info WHERE modelid IN (57,58);
INSERT INTO creature_model_info (modelid, bounding_radius, combat_reach, gender, modelid_other_gender) VALUES
(57, 0.3830, 1.5, 0, 58),
(58, 0.3830, 1.5, 1, 57);

View file

@ -95,6 +95,7 @@ pkgdata_DATA = \
10106_02_mangos_mangos_string.sql \
10107_01_mangos_mangos_string.sql \
10109_01_mangos_creature_model_info.sql \
10119_01_mangos_creature_model_info.sql \
README
## Additional files to include when running 'make dist'
@ -170,4 +171,5 @@ EXTRA_DIST = \
10106_02_mangos_mangos_string.sql \
10107_01_mangos_mangos_string.sql \
10109_01_mangos_creature_model_info.sql \
10119_01_mangos_creature_model_info.sql \
README