aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2014-09-27 06:03:57 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2014-09-27 06:03:57 +0200
commit09f682b11eeb5c29e694172179ea23f28458b711 (patch)
treef3a13bcdff263b2e1453f39dc0b83a660aa56df3
parenteccc6e97ead56d79cf58904a9276c73feea028ee (diff)
Core/Spells: Fix typo
-rw-r--r--src/server/scripts/Spells/spell_holiday.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Spells/spell_holiday.cpp b/src/server/scripts/Spells/spell_holiday.cpp
index 2d993e771db..e43249ff8aa 100644
--- a/src/server/scripts/Spells/spell_holiday.cpp
+++ b/src/server/scripts/Spells/spell_holiday.cpp
@@ -560,12 +560,12 @@ class spell_brewfest_ram : public SpellScriptLoader
break;
case SPELL_RAM_CANTER:
target->CastCustomSpell(SPELL_RAM_FATIGUE, SPELLVALUE_AURA_STACK, 1, target, TRIGGERED_FULL_MASK);
- if (aurEff->GetTickNumber() == 4)
+ if (aurEff->GetTickNumber() == 8)
target->CastSpell(target, SPELL_BREWFEST_QUEST_SPEED_BUNNY_YELLOW, true);
break;
case SPELL_RAM_GALLOP:
target->CastCustomSpell(SPELL_RAM_FATIGUE, SPELLVALUE_AURA_STACK, target->HasAura(SPELL_RAM_FATIGUE) ? 4 : 5 /*Hack*/, target, TRIGGERED_FULL_MASK);
- if (aurEff->GetTickNumber() == 4)
+ if (aurEff->GetTickNumber() == 8)
target->CastSpell(target, SPELL_BREWFEST_QUEST_SPEED_BUNNY_RED, true);
break;
default: