Skip to content

Commit

Permalink
fix effects to match dbc
Browse files Browse the repository at this point in the history
  • Loading branch information
sogladev committed Sep 19, 2024
1 parent 8419bc8 commit f15cc20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mod_ghost_speed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ class spell_ghost_speed_night_elf_aura : public AuraScript

void Register() override
{
DoEffectCalcAmount += AuraEffectCalcAmountFn(spell_ghost_speed_night_elf_aura::CalculateAmountSpeed, EFFECT_1, SPELL_AURA_MOD_INCREASE_SPEED);
DoEffectCalcAmount += AuraEffectCalcAmountFn(spell_ghost_speed_night_elf_aura::CalculateAmountSwimSpeed, EFFECT_2, SPELL_AURA_MOD_INCREASE_SWIM_SPEED);
DoEffectCalcAmount += AuraEffectCalcAmountFn(spell_ghost_speed_night_elf_aura::CalculateAmountSpeed, EFFECT_0, SPELL_AURA_MOD_INCREASE_SPEED);
DoEffectCalcAmount += AuraEffectCalcAmountFn(spell_ghost_speed_night_elf_aura::CalculateAmountSwimSpeed, EFFECT_1, SPELL_AURA_MOD_INCREASE_SWIM_SPEED);
}
};

Expand Down

0 comments on commit f15cc20

Please sign in to comment.