Skip to content

Commit 153612c

Browse files
committed
[Custom] Move go casting hack to custom file
Based on cmangos/classic-db@1f321a9
1 parent d45001d commit 153612c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Updates/0603_aq_hackfix.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
-- hack - default data should be 0
2+
UPDATE gameobject_template SET data3=0 WHERE entry = 180619;
3+

utilities/cmangos_custom.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ UPDATE gameobject_template SET data1=0 WHERE entry=179004;
123123
-- Inconspicuous Landmark 142189 - consumable, despawn on s.11462 expire
124124
UPDATE `gameobject_template` SET `data5` = 1 WHERE `entry` = 142189; -- 19660800 / 65536 = 300sec
125125

126+
-- 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
127+
UPDATE gameobject_template SET data3=65536*6 WHERE entry IN(180619);
128+
126129
-- -------------------------------
127130
-- Item custom changes
128131
-- -------------------------------

0 commit comments

Comments
 (0)