diff options
| author | SnapperRy <snapperryen@gmail.com> | 2016-09-13 01:43:37 +0200 |
|---|---|---|
| committer | SnapperRy <snapperryen@gmail.com> | 2016-09-13 01:44:33 +0200 |
| commit | 271c16fb60f7c0d3ada5d34e0dfc39eb8b1d2cb1 (patch) | |
| tree | f76c6272e9107c53ab33e38562becfce15956c14 | |
| parent | 3713b4e423949f2314a68b531ba7c091d4b64c3a (diff) | |
DB/Quest: improvements for Test at Sea:
- Prevent player from entering combat when using the quest item.
- The targeted NPCs should only yell sporadically.
| -rw-r--r-- | sql/updates/world/3.3.5/2016_09_12_03_world.sql | 2 | ||||
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_09_12_03_world.sql b/sql/updates/world/3.3.5/2016_09_12_03_world.sql new file mode 100644 index 00000000000..bf9120a1b28 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_09_12_03_world.sql @@ -0,0 +1,2 @@ +-- +UPDATE `smart_scripts` SET `event_chance`=5 WHERE `entryorguid`=24120 AND `id`=1; diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 43301d0242c..ccdda800bc0 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3365,6 +3365,7 @@ void SpellMgr::LoadSpellInfoCorrections() break; case 42490: // Energized! case 42492: // Cast Energized + case 43115: // Plague Vial spellInfo->AttributesEx |= SPELL_ATTR1_NO_THREAT; break; case 46842: // Flame Ring |
