Fixed long forgotten gamebuild default value (thx Aokromes).

Also fixed typo in script full file (thx ogeraisi).

--HG--
branch : trunk
This commit is contained in:
teacher
2010-03-23 02:13:38 +01:00
parent 2c2b75fb55
commit 05e7a155a5
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -913,7 +913,7 @@ UPDATE `gameobject_template` SET `ScriptName`='containment_sphere' WHERE `entry`
UPDATE `instance_template` SET `script`='instance_oculus' WHERE `map`=578;
UPDATE `creature_template` SET `ScriptName`='boss_drakos' WHERE `entry`=27654;
UPDATE `creature_template` SET `ScriptName`='npc_unstable_sphere' WHERE `entry`=28166;
UPDATE `creature_template` SET `ScriptName`='npc_oculus_drakes' WHERE `entry` IN (27657,27658,27659);
UPDATE `creature_template` SET `ScriptName`='npc_oculus_drake' WHERE `entry` IN (27657,27658,27659);
/* OBSIDIAN SANCTUM */
UPDATE `instance_template` SET `script`='instance_obsidian_sanctum' WHERE `map`=615;
+1 -1
View File
@@ -196,7 +196,7 @@ CREATE TABLE `realmlist` (
`timezone` tinyint(3) unsigned NOT NULL default '0',
`allowedSecurityLevel` tinyint(3) unsigned NOT NULL default '0',
`population` float unsigned NOT NULL default '0',
`gamebuild` int(11) unsigned NOT NULL default '10505',
`gamebuild` int(11) unsigned NOT NULL default '11403',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Realm System';
+1
View File
@@ -0,0 +1 @@
ALTER TABLE `realmlist` CHANGE COLUMN `gamebuild` `gamebuild` int(11) unsigned NOT NULL default '11403';