diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index a4334ef4c..c092eef8b 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1774,6 +1774,11 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) m_caster->CastSpell(unitTarget,60934,true,NULL); return; } + case 64385: // Spinning (from Unusual Compass) + { + m_caster->SetFacingTo(frand(0, M_PI*2), true); + return; + } case 67019: // Flask of the North { if (m_caster->GetTypeId() != TYPEID_PLAYER) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 5c6d68f2d..70741b661 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10557" + #define REVISION_NR "10558" #endif // __REVISION_NR_H__