diff options
author | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-09 13:14:00 +0000 |
---|---|---|
committer | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-09 13:14:00 +0000 |
commit | 98b4c083aabe025b67022367f24a7543f33fcfc5 (patch) | |
tree | 1419a79cba0f5cbbf9292acc0edabb7e32aafd4f /src/map/battle.c | |
parent | a035c0d52588e5f30d531e49d8294a9b8583ff49 (diff) | |
download | hercules-98b4c083aabe025b67022367f24a7543f33fcfc5.tar.gz hercules-98b4c083aabe025b67022367f24a7543f33fcfc5.tar.bz2 hercules-98b4c083aabe025b67022367f24a7543f33fcfc5.tar.xz hercules-98b4c083aabe025b67022367f24a7543f33fcfc5.zip |
Fixed SG_FUSION hp penalty (0.5% to 2%), bugreport:1805
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12929 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index 07bc5379a..d7bae3c0e 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -2096,7 +2096,7 @@ static struct Damage battle_calc_weapon_attack(struct block_list *src,struct blo if (100*sstatus->hp <= 20*sstatus->max_hp) hp = sstatus->hp; } else - hp = 5*hp/1000; + hp = 2*hp/100; //2% hp loss per hit status_zap(src, hp, 0); } |