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:
@@ -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
@@ -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';
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `realmlist` CHANGE COLUMN `gamebuild` `gamebuild` int(11) unsigned NOT NULL default '11403';
|
||||
Reference in New Issue
Block a user