Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C++ by asd ( 16 years ago )
+ // Shadowflame and Curse of Agony
+ if( spellInfo_1->SpellIconID == 544 && spellInfo_2->SpellIconID == 3317 ||
+ spellInfo_2->SpellIconID == 544 && spellInfo_1->SpellIconID == 3317 )
+ return false;
+
+ // Shadowflame and Corruption
+ if( spellInfo_1->SpellIconID == 313 && spellInfo_2->SpellIconID == 3317 ||
+ spellInfo_2->SpellIconID == 313 && spellInfo_1->SpellIconID == 3317 )
+ return false;
+
+ // Shadowflame and Unstable Affliction
+ if( spellInfo_1->SpellIconID == 2039 && spellInfo_2->SpellIconID == 3317 ||
+ spellInfo_2->SpellIconID == 2039 && spellInfo_1->SpellIconID == 3317 )
+ return false;
+
+ // Shadowflame and Curse of Doom
+ if( spellInfo_1->SpellIconID == 91 && spellInfo_2->SpellIconID == 3317 ||
+ spellInfo_2->SpellIconID == 91 && spellInfo_1->SpellIconID == 3317 )
+ return false;
Revise this Paste