Skip to content

Commit

Permalink
Merge pull request #107 from Zingzah/master
Browse files Browse the repository at this point in the history
Classic Mistletoe Spell Fix
  • Loading branch information
DomGries committed May 20, 2015
2 parents 04d5e36 + 0e130e8 commit 31019ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game/SpellEffects.cpp
Expand Up @@ -3489,9 +3489,9 @@ void Spell::EffectScriptEffect(SpellEffectIndex eff_idx)
if (!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER)
return;

uint32 spells[3] = {26206, 26207, 45036};
uint32 spells[2] = {26206, 26207};

m_caster->CastSpell(unitTarget, spells[urand(0, 2)], true);
m_caster->CastSpell(unitTarget, spells[urand(0, 1)], true);
return;
}
case 26275: // PX-238 Winter Wondervolt TRAP
Expand Down

0 comments on commit 31019ea

Please sign in to comment.