[Combat] Fix shield calculation (#2234)

* Fix max mitigation calculation

* Fix shield ability not receiving correct arguments from perl script.

* Correct shielder having wrong mitigation set.
This commit is contained in:
Quintinon
2022-06-01 14:17:14 -07:00
committed by GitHub
parent de830e5535
commit a00f086bb8
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -6569,7 +6569,7 @@ XS(XS_Mob_ShieldAbility) {
if (items < 8) {
can_shield_npc = true;
}
THIS->ShieldAbility(target_id, shielder_max_distance, shield_duration, shield_duration, shield_duration, use_aa, can_shield_npc);
THIS->ShieldAbility(target_id, shielder_max_distance, shield_duration, shield_target_mitigation, shielder_mitigation, use_aa, can_shield_npc);
}
XSRETURN_EMPTY;