- Timestamp:
- 11/19/08 13:42:01 (17 years ago)
- Location:
- trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/sql/updates/163_world.sql
r160 r162 1 1 DELETE FROM spell_linked_spell WHERE `spell_trigger` IN (39992, 39835, 42052, -41914, 41126); 2 -- INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (39992, 39835, 1, 'Needle Spine');2 -- INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (39992, 39835, 1, 'Needle Spine'); 3 3 INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (39835, 39968, 1, 'Needle Spine'); 4 4 INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (-41914, 41915, 0, 'Summon Parasitic Shadowfiend'); -
trunk/src/game/SpellAuras.cpp
r161 r162 1881 1881 } 1882 1882 } 1883 // All ok cast by default case 1883 m_target->CastSpell(target, triggredSpellInfo, true, 0, this, originalCasterGUID); 1884 /*// All ok cast by default case 1884 1885 Spell *spell = new Spell(m_target, triggredSpellInfo, true, originalCasterGUID ); 1885 1886 … … 1891 1892 targets.setDestination(dynObj->GetPositionX(),dynObj->GetPositionY(),dynObj->GetPositionZ()); 1892 1893 1893 spell->prepare(&targets, this); 1894 spell->prepare(&targets, this);*/ 1894 1895 } 1895 1896 -
trunk/src/game/SpellEffects.cpp
r161 r162 57 57 #include "Util.h" 58 58 #include "TemporarySummon.h" 59 60 59 61 60 pEffect SpellEffects[TOTAL_SPELL_EFFECTS]= … … 224 223 void Spell::EffectUnused(uint32 /*i*/) 225 224 { 226 // NOT USED BY ANY SPELL OR USELESS OR IMPLEMENTED IN DIFFERENT WAY IN TRINITY225 // NOT USED BY ANY SPELL OR USELESS OR IMPLEMENTED IN DIFFERENT WAY IN MANGOS 227 226 } 228 227