Changeset 284 for trunk/src/game/SpellAuras.cpp
- Timestamp:
- 11/22/08 01:55:20 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/SpellAuras.cpp
r283 r284 50 50 #include "GridNotifiersImpl.h" 51 51 #include "CellImpl.h" 52 #include "TemporarySummon.h"53 52 54 53 #define NULL_AURA_SLOT 0xFF … … 2025 2024 return; 2026 2025 } 2027 2028 // Eye of Kilrogg, unsummon eye when aura is gone2029 if(GetId() == 126 && caster->GetTypeId() == TYPEID_PLAYER && caster->GetCharm())2030 {2031 ((TemporarySummon*)caster->GetCharm())->UnSummon();2032 return;2033 }2034 2026 } 2035 2027