mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 07:37:03 +00:00
[8536] Fixed spell 62776
Signed-off-by: Ambal <pogrebniak@gala.net>
This commit is contained in:
parent
b72fe466e1
commit
19e28af2f0
2 changed files with 9 additions and 1 deletions
|
|
@ -348,9 +348,17 @@ void Spell::EffectSchoolDMG(uint32 effect_idx)
|
||||||
}
|
}
|
||||||
// Cataclysmic Bolt
|
// Cataclysmic Bolt
|
||||||
case 38441:
|
case 38441:
|
||||||
|
{
|
||||||
damage = unitTarget->GetMaxHealth() / 2;
|
damage = unitTarget->GetMaxHealth() / 2;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
// Tympanic Tantrum
|
||||||
|
case 62775:
|
||||||
|
{
|
||||||
|
damage = unitTarget->GetMaxHealth() / 10;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8535"
|
#define REVISION_NR "8536"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue