Changeset 274 for trunk/src/game/SpellAuras.cpp
- Timestamp:
- 11/22/08 00:35:49 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/SpellAuras.cpp
r272 r274 50 50 #include "GridNotifiersImpl.h" 51 51 #include "CellImpl.h" 52 #include "TemporarySummon.h"53 52 54 53 #define NULL_AURA_SLOT 0xFF … … 2015 2014 return; 2016 2015 } 2017 2018 // Eye of Kilrogg, unsummon eye when aura is gone2019 if(GetId() == 126 && caster->GetTypeId() == TYPEID_PLAYER && caster->GetCharm())2020 {2021 ((TemporarySummon*)caster->GetCharm())->UnSummon();2022 return;2023 }2024 2016 } 2025 2017