Skip to content

Commit

Permalink
[0493] AQ Wareffort Remove double delete for Colossus of X
Browse files Browse the repository at this point in the history
Remove bad skinning loot due to diff with classicmangos
  • Loading branch information
AnonXS committed Dec 16, 2022
1 parent 53db82c commit 3c528f2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Updates/0493_WDB-4308_war_effort_release.sql
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,8 @@ UPDATE `npc_gossip` SET `npc_guid` = @CAGUID+36 WHERE `npc_guid` = 85607; -- 85
-- spawns around crystals
-- ======================
SET @CGUID := 155200; -- 155301
DELETE FROM `game_event_creature` WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id` IN (15414,15421,15422,15423,15424,15740,15741,15742,15743,15744,15747,15748,15749,15750,15751,15752,15753,15754,15756,15757,15758,15759,15806,15807,15808,15810,15811,15812,15813,15814,15815,15816,15817,15818));
DELETE FROM `creature` WHERE `id` IN (15414,15421,15422,15423,15424,15740,15741,15742,15743,15744,15747,15748,15749,15750,15751,15752,15753,15754,15756,15757,15758,15759,15806,15807,15808,15810,15811,15812,15813,15814,15815,15816,15817,15818,15853,15861);
DELETE FROM `game_event_creature` WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id` IN (15414,15421,15422,15423,15424,15743,15744,15747,15748,15749,15750,15751,15752,15753,15754,15756,15757,15758,15759,15806,15807,15808,15810,15811,15812,15813,15814,15815,15816,15817,15818));
DELETE FROM `creature` WHERE `id` IN (15414,15421,15422,15423,15424,15743,15744,15747,15748,15749,15750,15751,15752,15753,15754,15756,15757,15758,15759,15806,15807,15808,15810,15811,15812,15813,15814,15815,15816,15817,15818,15853,15861);
DELETE FROM `creature` WHERE `id` = 15341 AND `map` = 1;
DELETE FROM game_event_creature WHERE guid BETWEEN @CGUID+101 AND @CGUID+797;
DELETE FROM creature WHERE guid BETWEEN @CGUID+101 AND @CGUID+797;
Expand Down Expand Up @@ -1343,6 +1343,9 @@ UPDATE `creature_template` SET `UnitFlags` = 33555200, `Faction` = 35 WHERE `ent
UPDATE `creature_template` SET `ExtraFlags` = `ExtraFlags`&~2 WHERE `entry` = 14720; -- High Overlord Saurfang
UPDATE `creature_template` SET `Faction` = 777 WHERE `entry` = 15853; -- Orgrimmar Elite Infantryman

UPDATE `creature_template` SET `SkinningLootId`='0' WHERE `entry` = 15414;
DELETE FROM `skinning_loot_template` WHERE `entry` = 15414;

DELETE FROM `creature_spell_list` WHERE `Id` IN (1574001,1574101,1574201);
INSERT INTO `creature_spell_list` (`Id`, `Position`, `SpellId`, `Flags`, `TargetId`, `ScriptId`, `Availability`, `Probability`, `InitialMin`, `InitialMax`, `RepeatMin`, `RepeatMax`, `Comments`) VALUES
(1574001, 0, 26167, 0, 0, 1574001, 100, 1, 15000, 30000, 60000, 90000, 'Silithus - Colossus of Zora - Colossal Smash'),
Expand Down

0 comments on commit 3c528f2

Please sign in to comment.