Changeset 139 for trunk/src/game/Unit.cpp
- Timestamp:
- 11/19/08 13:39:41 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/Unit.cpp
r138 r139 5086 5086 5087 5087 // Cast finish spell (triggeredByAura already not exist!) 5088 CastSpell(this, 27285, true, castItem, NULL, casterGuid); 5088 if(Unit* caster = GetUnit(*this, casterGuid)) 5089 caster->CastSpell(this, 27285, true, castItem); 5089 5090 return true; // no hidden cooldown 5090 5091 } … … 5108 5109 5109 5110 // Cast finish spell (triggeredByAura already not exist!) 5110 CastSpell(this, 32865, true, castItem, NULL, casterGuid); 5111 if(Unit* caster = GetUnit(*this, casterGuid)) 5112 caster->CastSpell(this, 32865, true, castItem); 5111 5113 return true; // no hidden cooldown 5112 5114 }