Skip to content

Commit

Permalink
[Custom] Add missing hackfixes from tbc and add Plaque Fissure hackfix
Browse files Browse the repository at this point in the history
Remove DrekThars Scrolls 179004 hackfix - other solution found

todo: align Thaurissan Relic section now that data1 default is same as in tbc
  • Loading branch information
AnonXS committed Jan 25, 2025
1 parent 8ae4c82 commit 28eab43
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions utilities/cmangos_custom.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
-- - Data or their parsing were wrong


-- ============================================================
-- Classic section
-- ============================================================

-- -------------------------------
-- Gameobject custom changes
-- -------------------------------
Expand Down Expand Up @@ -104,15 +108,21 @@ UPDATE gameobject_template SET data2=0 WHERE entry IN (176150,176151);
-- Cannonball: set radius to zero so it is only triggered through spell
UPDATE gameobject_template SET data2=0 WHERE entry=176211;

-- Drek'Thar's Scrolls 179004 - seemingly never used
UPDATE gameobject_template SET data1=0 WHERE entry=179004;
-- Verigan's Fist: must despawn during scripted quest
UPDATE gameobject_template SET `data3`=0, `data5`=1 WHERE entry=102413;

-- Temporary fix data6 for GO 178559 (Larva Spewer) in prevision of coming core update
UPDATE gameobject_template SET data6=0 WHERE entry=178559;

-- Inconspicuous Landmark 142189 - consumable, despawn on s.11462 expire
UPDATE `gameobject_template` SET `data5` = 1 WHERE `entry` = 142189; -- 19660800 / 65536 = 300sec

-- hack - this bypasses despawn prevention due to GO casting a hidden 6 second spell the GO should cast - note will be put down even in core
UPDATE gameobject_template SET data3=65536*6 WHERE entry IN(180619);

-- Plague Fissure: use wotlk sniff data for Eruption s.29371 spell dmg - might require go script for classic and tbc
UPDATE gameobject_template SET `data3` = 29371 WHERE entry IN (181510,181511,181512,181513,181514,181515,181516,181517,181518,181519,181520,181521,181522,181523,181524,181525,181526,181527,181528,181529,181530,181531,181532,181533,181534,181535,181536,181537,181538,181539,181540,181541,181542,181543,181544,181545,181546,181547,181548,181549,181550,181551,181552,181676,181677,181678,181695);

-- -------------------------------
-- Item custom changes
-- -------------------------------
Expand Down

0 comments on commit 28eab43

Please # to comment.