aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <none@none>2010-05-24 13:56:21 +0200
committerShauren <none@none>2010-05-24 13:56:21 +0200
commitffe78ba600d407ca4304b6d077242e1956ae73fc (patch)
tree207f030b52eb84dbfc67d19a317c2162aa2b8b01
parent3083fc988547403e7a2872aaf0739735fa9d9bb0 (diff)
Fixed duration on Glow Worm
--HG-- branch : trunk
-rw-r--r--src/game/SpellEffects.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
index 81a01592eca..08dd692fa1d 100644
--- a/src/game/SpellEffects.cpp
+++ b/src/game/SpellEffects.cpp
@@ -4223,8 +4223,8 @@ void Spell::EffectEnchantItemTmp(uint32 i)
// other cases with this SpellVisual already selected
else if (m_spellInfo->SpellVisual[0] == 215)
duration = 1800; // 30 mins
- // some fishing pole bonuses
- else if (m_spellInfo->SpellVisual[0] == 563)
+ // some fishing pole bonuses except Glow Worm which lasts full hour
+ else if (m_spellInfo->SpellVisual[0] == 563 && m_spellInfo->Id != 64401)
duration = 600; // 10 mins
// shaman rockbiter enchantments
else if (m_spellInfo->SpellVisual[0] == 0)