From 5622e2a63e57458bd8cd34ddf0233e5372b282e3 Mon Sep 17 00:00:00 2001 From: Nyeriah Date: Mon, 1 Sep 2014 23:44:33 -0300 Subject: Core/Spells: Screams of the Dead's (51750) duration shouldn't be affected by diminishing returns --- src/server/game/Spells/SpellMgr.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 8e0c8c8bd01..461e56b8f78 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -85,6 +85,9 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellInfo const* spellproto, // Black Plague else if (spellproto->Id == 64155) return DIMINISHING_NONE; + // Screams of the Dead (King Ymiron) + else if (spellproto->Id == 51750) + return DIMINISHING_NONE; break; } // Event spells -- cgit v1.2.3 From e6482508d9e7029d840828e855665a748732b9cf Mon Sep 17 00:00:00 2001 From: Aokromes Date: Tue, 2 Sep 2014 07:54:45 +0200 Subject: DB/Creature: Revert faction of Fizzle Darkstorm to 3.3.5a He is dead on 4.x and higher. Closes #13015 --- sql/updates/world/2014_09_02_00_world_misc_335.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/updates/world/2014_09_02_00_world_misc_335.sql diff --git a/sql/updates/world/2014_09_02_00_world_misc_335.sql b/sql/updates/world/2014_09_02_00_world_misc_335.sql new file mode 100644 index 00000000000..0ead7e514e6 --- /dev/null +++ b/sql/updates/world/2014_09_02_00_world_misc_335.sql @@ -0,0 +1,2 @@ +-- +UPDATE `creature_template` SET `faction` = 554 WHERE `entry` = 3203; -- cgit v1.2.3