[10275] Fix initialization of DoSpellBonuses

Signed-off-by: Lynx3d <lynx3d@some-imaginary-isp.org>
This commit is contained in:
Dennis 2010-07-26 22:49:55 +02:00 committed by Lynx3d
parent 6244d992ef
commit e1ff3579c9
2 changed files with 2 additions and 2 deletions

View file

@ -1327,7 +1327,7 @@ void SpellMgr::LoadSpellProcItemEnchant()
struct DoSpellBonuses
{
DoSpellBonuses(SpellBonusMap& _spellBonusMap, SpellBonusEntry const& _spellBonus) : spellBonusMap(spellBonusMap), spellBonus(_spellBonus) {}
DoSpellBonuses(SpellBonusMap& _spellBonusMap, SpellBonusEntry const& _spellBonus) : spellBonusMap(_spellBonusMap), spellBonus(_spellBonus) {}
void operator() (uint32 spell_id) { spellBonusMap[spell_id] = spellBonus; }
SpellBonusMap& spellBonusMap;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10274"
#define REVISION_NR "10275"
#endif // __REVISION_NR_H__