Show
Ignore:
Timestamp:
11/22/08 01:55:16 (17 years ago)
Author:
yumileroy
Message:

*Alterac Valley. By Bogie and Balrok. Note: some core contents are modified. Will fix them later. Some sql are disabled because of possible conflict with offical DB. Use them at your own risk.

Original author: megamage
Date: 2008-11-21 19:45:49-06:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/SpellAuras.cpp

    r279 r283  
    5050#include "GridNotifiersImpl.h" 
    5151#include "CellImpl.h" 
     52#include "TemporarySummon.h" 
    5253 
    5354#define NULL_AURA_SLOT 0xFF 
     
    20242025            return; 
    20252026        } 
     2027 
     2028        // Eye of Kilrogg, unsummon eye when aura is gone 
     2029        if(GetId() == 126 && caster->GetTypeId() == TYPEID_PLAYER && caster->GetCharm()) 
     2030        { 
     2031            ((TemporarySummon*)caster->GetCharm())->UnSummon(); 
     2032            return; 
     2033        } 
    20262034    } 
    20272035