Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/mangos/mangos
Browse files Browse the repository at this point in the history
  • Loading branch information
rsa committed Jun 13, 2011
2 parents 28b34f4 + ab0d7f5 commit 2fc4dd6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/game/ObjectGuid.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class MANGOS_DLL_SPEC ObjectGuid

operator uint64() const { return m_guid; }
private:
ObjectGuid(uint32 const&); // no implementation, used for catch wrong type assign
explicit ObjectGuid(uint32 const&); // no implementation, used for catch wrong type assign
ObjectGuid(HighGuid, uint32, uint64 counter); // no implementation, used for catch wrong type assign
ObjectGuid(HighGuid, uint64 counter); // no implementation, used for catch wrong type assign

Expand Down
5 changes: 5 additions & 0 deletions src/game/SpellEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1136,6 +1136,11 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
m_caster->CastSpell(m_caster, spell_id, true, NULL);
return;
}
case 17770: // Wolfshead Helm Energy
{
m_caster->CastSpell(m_caster, 29940, true, NULL);
return;
}
case 17950: // Shadow Portal
{
if (!unitTarget)
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11627"
#define REVISION_NR "11629"
#endif // __REVISION_NR_H__

0 comments on commit 2fc4dd6

Please sign in to comment.