Replaced npcspecialatk with special_attacks, needs more testing also gotta export new api for it as I can't remove the legacy one. Too many quests rely on the legacy functionality.

This commit is contained in:
KimLS
2013-07-06 03:45:06 -07:00
parent 0c675c33e2
commit 63d678ce29
32 changed files with 355 additions and 663 deletions
+1 -1
View File
@@ -517,7 +517,7 @@ bool Mob::IsAttackAllowed(Mob *target, bool isSpellAttack)
if(this == target) // you can attack yourself
return true;
if(target->SpecAttacks[NO_HARM_FROM_CLIENT]){
if(target->GetSpecialAbility(NO_HARM_FROM_CLIENT)){
return false;
}