Changeset 3189

Show
Ignore:
Timestamp:
03/02/2010 07:50:57 AM (6 months ago)
Author:
jackpoz
Message:

MODIFIED: Reverted r1614, Mangle(Cat) (spell id 33876) now adds combo points.

Location:
trunk/src/arcemu-world
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/arcemu-world/SpellNameHashes.h

    r2950 r3189  
    1037710377#define SPELL_HASH_SINGE                                                                  0x6CB0830F 
    1037810378#define SPELL_HASH_NURTURING_INSTINCT                                                     0x24CB0FB5 
    10379 #define SPELL_HASH_MANGLE___CAT                                                           0x51ED6C19 
     10379#define SPELL_HASH_MANGLE___CAT                                                           0xA938E257 
    1038010380#define SPELL_HASH_MOONFIRE_MANA_REDUCTION                                                0x6447266B 
    1038110381#define SPELL_HASH_MANGLE___BEAR                                                          0x52317C11 
  • trunk/src/arcemu-world/Unit.cpp

    r3185 r3189  
    69936993{ 
    69946994        // If the unit doesn't exist - OR - the unit exists but is not in world 
    6995         if( !m_Unit || ( m_Unit && !m_Unit->IsInWorld() ) ) 
     6995        if (m_Unit == NULL || !m_Unit->IsInWorld()) 
    69966996                return false; 
    69976997