summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/emap/battle.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/emap/battle.c b/src/emap/battle.c
index 5a24927..3889c18 100644
--- a/src/emap/battle.c
+++ b/src/emap/battle.c
@@ -91,8 +91,8 @@ struct Damage ebattle_calc_weapon_attack_post(struct Damage retVal,
struct block_list *src,
struct block_list *target,
uint16 skill_id,
- uint16 skill_lv __attribute__ ((unused)),
- int wflag __attribute__ ((unused)))
+ uint16 skill_lv,
+ int wflag)
{
if (src == NULL)
return retVal;
@@ -101,6 +101,14 @@ struct Damage ebattle_calc_weapon_attack_post(struct Damage retVal,
if (sd == NULL)
return retVal;
+ // Staffs and Books will use MATK instead of ATK.
+ // These regular attacks are still subject to regular DEF/Evade/etc.
+ // And base attack bonus might still be gained from STR instead of INT.
+ // TODO: Move this to a pre-hook to avoid extra calculation
+ if (!skill_id && (sd->weapontype == W_STAFF || sd->weapontype == W_BOOK)) {
+ retVal=battle->calc_magic_attack(src, target, skill_id, skill_lv, wflag);
+ }
+
struct mob_data *md = BL_CAST(BL_MOB, target);
if (md == NULL)
return retVal;