From 30953733770f10449ce32662369546e5ebd34449 Mon Sep 17 00:00:00 2001 From: skotlex Date: Sat, 2 Sep 2006 20:40:51 +0000 Subject: - Applied use of RC_BOSS/RC_NONBOSS in the ignore def code. - Corrected SCB_LUK not updating SCB_BATK as well. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8598 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/battle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/battle.c') diff --git a/src/map/battle.c b/src/map/battle.c index e77a26e2e..fe693d1ec 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -1634,13 +1634,13 @@ static struct Damage battle_calc_weapon_attack( { //Elemental/Racial adjustments if(sd->right_weapon.def_ratio_atk_ele & (1<def_ele) || sd->right_weapon.def_ratio_atk_race & (1<race) || - sd->right_weapon.def_ratio_atk_race & (is_boss(target)?1<<10:1<<11) + sd->right_weapon.def_ratio_atk_race & (1<<(is_boss(target)?RC_BOSS:RC_NONBOSS)) ) flag.pdef = 1; if(sd->left_weapon.def_ratio_atk_ele & (1<def_ele) || sd->left_weapon.def_ratio_atk_race & (1<race) || - sd->left_weapon.def_ratio_atk_race & (is_boss(target)?1<<10:1<<11) + sd->left_weapon.def_ratio_atk_race & (1<<(is_boss(target)?RC_BOSS:RC_NONBOSS)) ) { //Pass effect onto right hand if configured so. [Skotlex] if (battle_config.left_cardfix_to_right && flag.rh) flag.pdef = 1; -- cgit v1.2.3-70-g09d2