Skip to content

Commit

Permalink
[Custom] Move go casting hack to custom file
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonXS committed Dec 16, 2022
1 parent d45001d commit 153612c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Updates/0603_aq_hackfix.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- hack - default data should be 0
UPDATE gameobject_template SET data3=0 WHERE entry = 180619;

3 changes: 3 additions & 0 deletions utilities/cmangos_custom.sql
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ UPDATE gameobject_template SET data1=0 WHERE entry=179004;
-- 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);

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

0 comments on commit 153612c

Please sign in to comment.