mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[9092] Fixed typo in function name.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
2087aa2876
commit
4b0ceaeb6b
3 changed files with 4 additions and 4 deletions
|
|
@ -221,7 +221,7 @@ class Spell
|
||||||
void EffectDistract(uint32 i);
|
void EffectDistract(uint32 i);
|
||||||
void EffectPull(uint32 i);
|
void EffectPull(uint32 i);
|
||||||
void EffectSchoolDMG(uint32 i);
|
void EffectSchoolDMG(uint32 i);
|
||||||
void EffectEnvirinmentalDMG(uint32 i);
|
void EffectEnvironmentalDMG(uint32 i);
|
||||||
void EffectInstaKill(uint32 i);
|
void EffectInstaKill(uint32 i);
|
||||||
void EffectDummy(uint32 i);
|
void EffectDummy(uint32 i);
|
||||||
void EffectTeleportUnits(uint32 i);
|
void EffectTeleportUnits(uint32 i);
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@ pEffect SpellEffects[TOTAL_SPELL_EFFECTS]=
|
||||||
&Spell::EffectUnused, // 4 SPELL_EFFECT_PORTAL_TELEPORT unused
|
&Spell::EffectUnused, // 4 SPELL_EFFECT_PORTAL_TELEPORT unused
|
||||||
&Spell::EffectTeleportUnits, // 5 SPELL_EFFECT_TELEPORT_UNITS
|
&Spell::EffectTeleportUnits, // 5 SPELL_EFFECT_TELEPORT_UNITS
|
||||||
&Spell::EffectApplyAura, // 6 SPELL_EFFECT_APPLY_AURA
|
&Spell::EffectApplyAura, // 6 SPELL_EFFECT_APPLY_AURA
|
||||||
&Spell::EffectEnvirinmentalDMG, // 7 SPELL_EFFECT_ENVIRONMENTAL_DAMAGE
|
&Spell::EffectEnvironmentalDMG, // 7 SPELL_EFFECT_ENVIRONMENTAL_DAMAGE
|
||||||
&Spell::EffectPowerDrain, // 8 SPELL_EFFECT_POWER_DRAIN
|
&Spell::EffectPowerDrain, // 8 SPELL_EFFECT_POWER_DRAIN
|
||||||
&Spell::EffectHealthLeech, // 9 SPELL_EFFECT_HEALTH_LEECH
|
&Spell::EffectHealthLeech, // 9 SPELL_EFFECT_HEALTH_LEECH
|
||||||
&Spell::EffectHeal, // 10 SPELL_EFFECT_HEAL
|
&Spell::EffectHeal, // 10 SPELL_EFFECT_HEAL
|
||||||
|
|
@ -285,7 +285,7 @@ void Spell::EffectInstaKill(uint32 /*i*/)
|
||||||
m_caster->DealDamage(unitTarget, unitTarget->GetHealth(), NULL, DIRECT_DAMAGE, SPELL_SCHOOL_MASK_NORMAL, NULL, false);
|
m_caster->DealDamage(unitTarget, unitTarget->GetHealth(), NULL, DIRECT_DAMAGE, SPELL_SCHOOL_MASK_NORMAL, NULL, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Spell::EffectEnvirinmentalDMG(uint32 i)
|
void Spell::EffectEnvironmentalDMG(uint32 i)
|
||||||
{
|
{
|
||||||
uint32 absorb = 0;
|
uint32 absorb = 0;
|
||||||
uint32 resist = 0;
|
uint32 resist = 0;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9091"
|
#define REVISION_NR "9092"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue