summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-22 17:33:58 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-22 17:33:58 +0000
commitf49666198ba97ff369bc25fb200668505aa1e381 (patch)
tree8e049421046c0216db841d10d54a81312f952bbe /src/map/mob.c
parente03b9539e56c360d9af30c9de2ccdea680ee6eea (diff)
downloadhercules-f49666198ba97ff369bc25fb200668505aa1e381.tar.gz
hercules-f49666198ba97ff369bc25fb200668505aa1e381.tar.bz2
hercules-f49666198ba97ff369bc25fb200668505aa1e381.tar.xz
hercules-f49666198ba97ff369bc25fb200668505aa1e381.zip
- Corrected the 20 lvl diff 15% exp bonus on pk_mode servers. Thanks to Vayu for pointing it out.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6698 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index e9c60b179..239a38886 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -1818,7 +1818,8 @@ int mob_damage(struct block_list *src,struct mob_data *md,int damage,int type)
per += per*sd->expaddrace[race]/100.;
per += per*sd->expaddrace[mode&MD_BOSS?10:11]/100.;
}
- if (battle_config.pk_mode && (md->db->lv - tmpsd[i]->status.base_level >= 20))
+ if (battle_config.pk_mode &&
+ (int)(md->db->lv - tmpsd[i]->status.base_level) >= 20) //Needed due to unsigned checks
per *= 1.15; // pk_mode additional exp if monster >20 levels [Valaris]
//SG additional exp from Blessings [Komurka] - probably can be optimalized ^^;;