summaryrefslogtreecommitdiff
path: root/src/map/skill.c
diff options
context:
space:
mode:
authorsmokexyz <sagunkho@hotmail.com>2017-05-21 12:00:05 +0800
committersmokexyz <sagunkho@hotmail.com>2017-05-21 12:00:05 +0800
commite171deb58c7ebbc010d0a40b0e2e66651a0d7913 (patch)
tree08250f1ebcba2e0e03f2ad0a164f44a110d15de1 /src/map/skill.c
parentbe118c7fad6df29dc691452ef511ac12fea37a06 (diff)
downloadhercules-e171deb58c7ebbc010d0a40b0e2e66651a0d7913.tar.gz
hercules-e171deb58c7ebbc010d0a40b0e2e66651a0d7913.tar.bz2
hercules-e171deb58c7ebbc010d0a40b0e2e66651a0d7913.tar.xz
hercules-e171deb58c7ebbc010d0a40b0e2e66651a0d7913.zip
Refine rate correction from kRO.
Normal Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941553&curpage=1 Enriched Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941565&curpage=1 Event Normal Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941558&curpage=1 Event Enriched Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941567&curpage=1
Diffstat (limited to 'src/map/skill.c')
-rw-r--r--src/map/skill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.c b/src/map/skill.c
index 714c2aa71..b70ddc055 100644
--- a/src/map/skill.c
+++ b/src/map/skill.c
@@ -15652,7 +15652,7 @@ void skill_weaponrefine (struct map_session_data *sd, int idx)
return;
}
- per = status->get_refine_chance(ditem->wlv, (int)item->refine) * 10;
+ per = status->get_refine_chance(ditem->wlv, (int)item->refine, REFINE_CHANCE_TYPE_NORMAL) * 10;
// Aegis leaked formula. [malufett]
if (sd->status.class == JOB_MECHANIC_T)