Changeset 283 for trunk/src/game/SpellAuras.cpp
- Timestamp:
- 11/22/08 01:55:16 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/SpellAuras.cpp
r279 r283 50 50 #include "GridNotifiersImpl.h" 51 51 #include "CellImpl.h" 52 #include "TemporarySummon.h" 52 53 53 54 #define NULL_AURA_SLOT 0xFF … … 2024 2025 return; 2025 2026 } 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 } 2026 2034 } 2027 2035