From 51c0c75efc0f0c31f0b62f664ea74f0197251692 Mon Sep 17 00:00:00 2001 From: shadowlady Date: Thu, 11 Nov 2004 15:47:41 +0000 Subject: [PATCH] Fixed a bug on Sharp Shooting critical rate bonus. git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@131 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/battle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/battle.c b/src/map/battle.c index 9ccdffa066..32ba10fab2 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -2911,7 +2911,7 @@ static struct Damage battle_calc_pc_weapon_attack( cri <<= 1; } - if(skill_num == SN_SHARPSHOOTING && rand()%100 < 50) + if(skill_num == SN_SHARPSHOOTING) cri += 200; }