mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[8144] Forgotten uninitialized value fix.
Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
parent
4b4eb0a6d5
commit
17d0cda637
2 changed files with 2 additions and 2 deletions
|
|
@ -687,7 +687,7 @@ struct SpellNonMeleeDamage{
|
||||||
struct SpellPeriodicAuraLogInfo
|
struct SpellPeriodicAuraLogInfo
|
||||||
{
|
{
|
||||||
SpellPeriodicAuraLogInfo(Aura *_aura, uint32 _damage, uint32 _overDamage, uint32 _absorb, uint32 _resist, float _multiplier, bool _critical = false)
|
SpellPeriodicAuraLogInfo(Aura *_aura, uint32 _damage, uint32 _overDamage, uint32 _absorb, uint32 _resist, float _multiplier, bool _critical = false)
|
||||||
: aura(_aura), damage(_damage), overDamage(_overDamage), absorb(_absorb), resist(_resist), multiplier(_multiplier) {}
|
: aura(_aura), damage(_damage), overDamage(_overDamage), absorb(_absorb), resist(_resist), multiplier(_multiplier), critical(_critical) {}
|
||||||
|
|
||||||
Aura *aura;
|
Aura *aura;
|
||||||
uint32 damage;
|
uint32 damage;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8143"
|
#define REVISION_NR "8144"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue