Core/Misc: Fixes
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
ALTER TABLE `pvpstats_players`
|
||||
CHANGE `score_killing_blows` `score_killing_blows` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_deaths` `score_deaths` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_honorable_kills` `score_honorable_kills` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_bonus_honor` `score_bonus_honor` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_damage_done` `score_damage_done` int(10) unsigned NOT NULL,
|
||||
CHANGE `score_healing_done` `score_healing_done` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_1` `attr_1` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_2` `attr_2` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_3` `attr_3` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_4` `attr_4` int(10) unsigned NOT NULL,
|
||||
CHANGE `attr_5` `attr_5` int(10) unsigned NOT NULL;
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `item_instance_artifact` ADD `artifactTierId` int(10) unsigned NOT NULL DEFAULT '0' AFTER `artifactAppearanceId`;
|
||||
@@ -0,0 +1,12 @@
|
||||
DELETE FROM `creature_equip_template` WHERE `CreatureID`= 1976 AND `ID`= 2;
|
||||
INSERT INTO `creature_equip_template` (`CreatureID`, `ID`, `ItemID1`, `ItemID2`, `ItemID3`) VALUES
|
||||
(1976, 2, 1902, 0, 0); -- Stormwind City Patroller
|
||||
|
||||
UPDATE `creature_addon` SET `bytes2`=256 WHERE `guid`=313937;
|
||||
UPDATE `waypoint_data` SET `action`=9 WHERE `id`=3139370 AND `point`=9;
|
||||
DELETE FROM `waypoint_scripts` WHERE `id`=9;
|
||||
INSERT INTO `waypoint_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`, `guid`) VALUES
|
||||
(9, 7, 31, 2, 0, 0, 0, 0, 0, 0, 950),
|
||||
(9, 9, 1, 234, 0, 0, 0, 0, 0, 0, 951),
|
||||
(9, 14, 1, 0, 0, 0, 0, 0, 0, 0, 952),
|
||||
(9, 16, 31, 1, 0, 0, 0, 0, 0, 0, 953);
|
||||
Reference in New Issue
Block a user