mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 03:15:41 +00:00
DB: Fixing some issues (#1474)
- Quest "The Lost Supplies" : Changed drop of the Scattered Crate drop of Lost Supplies to 100 drop chance. - Creature Flanis Swiftwing must be dead. - Deleted duplicate creature Commander Jordan. - Closes #1462
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
INSERT INTO version_db_world (`sql_rev`) VALUES ('1550318643525669100');
|
||||
|
||||
-- Scattered Crate drop Lost Supplies should have 100 drop chance
|
||||
UPDATE `gameobject_loot_template` SET `Chance`='100' WHERE `Entry`=3597 AND `Item`=6172;
|
||||
|
||||
-- Creature "Flanis Swiftwing" should be dead.
|
||||
UPDATE `creature_template_addon` SET `emote`=65 WHERE `entry`=21727;
|
||||
UPDATE `creature_template` SET `flags_extra`=2 WHERE `entry`=21727;
|
||||
UPDATE `creature_template` SET `unit_flags`=536904450 WHERE `entry`=21727;
|
||||
UPDATE `creature_template` SET `dynamicflags`=32 WHERE `entry`=21727;
|
||||
|
||||
-- Duplicate creature Commander Jordan
|
||||
DELETE FROM `creature` WHERE `guid`=105029;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=105029;
|
||||
Reference in New Issue
Block a user