diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2014-07-16 00:18:01 +0200 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2014-07-16 00:18:01 +0200 |
commit | e373f75ceb0651f1a17316369d3be6710eb6431c (patch) | |
tree | 9bee8002be91b259524d5384bb0b77e42ed971b2 | |
parent | 9f0ec867c40f62942c68d0b6dd4a74066fcee1b7 (diff) |
DB/Quest: Fix Banishing Portal
By dr-j, closes #12510
-rw-r--r-- | sql/updates/world/2014_07_16_01_world_misc.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/2014_07_16_01_world_misc.sql b/sql/updates/world/2014_07_16_01_world_misc.sql new file mode 100644 index 00000000000..0c082f37962 --- /dev/null +++ b/sql/updates/world/2014_07_16_01_world_misc.sql @@ -0,0 +1,13 @@ +-- +DELETE FROM `creature_template_addon` WHERE `entry`=23322; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `auras`) VALUES +(23322, 0, 0, 0, 4097, 0, '40849 40857'); + +UPDATE `creature_template` SET `AIName`='' WHERE `entry`=23322; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=23322; + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry` IN(40825,40830); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 1, 40825, 0, 0, 31, 0, 4, 0, 0, 1, 0, 0, '', 'Banishment Does not hit Player'), +(13, 1, 40830, 0, 0, 31, 0, 4, 0, 0, 1, 0, 0, '', 'Banishment Does not hit Player'); |