Fixed baby classes forging/brewing rates, bugreport:4847

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15241 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
shennetsind 2011-12-24 12:50:46 +00:00
parent e4c4ad96f5
commit bc7e5584ad

View File

@ -13071,7 +13071,7 @@ int skill_produce_mix (struct map_session_data *sd, int skill_id, int nameid, in
}
if (sd->class_&JOBL_BABY) //if it's a Baby Class
make_per = (make_per * 70) / 100; //Baby penalty is 30%
make_per = (make_per * 50) / 100; //Baby penalty is 50% (bugreport:4847)
if(make_per < 1) make_per = 1;