[8281] Add spellId to error output in UnregisterSingleCastAura().

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2009-07-31 12:22:25 +02:00
parent 253d39de21
commit a56f9ea6de
2 changed files with 2 additions and 2 deletions

View file

@ -7017,7 +7017,7 @@ void Aura::UnregisterSingleCastAura()
} }
else else
{ {
sLog.outError("Couldn't find the caster of the single target aura, may crash later!"); sLog.outError("Couldn't find the caster of the single target aura (SpellId %u), may crash later!", GetId());
assert(false); assert(false);
} }
m_isSingleTargetAura = false; m_isSingleTargetAura = false;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "8280" #define REVISION_NR "8281"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__