- Oops, forgot a very important check in homevolution D:

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11092 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2007-08-30 05:01:39 +00:00
parent d25b5ad103
commit f6c97de344

View File

@ -8737,7 +8737,7 @@ BUILDIN_FUNC(homunculus_evolution)
{ {
TBL_PC *sd; TBL_PC *sd;
sd=script_rid2sd(st); sd=script_rid2sd(st);
if(merc_is_hom_active(sd->hd)) if(merc_is_hom_active(sd->hd) && sd->hd->homunculus.intimacy > 91000)
merc_hom_evolution(sd->hd); merc_hom_evolution(sd->hd);
return 0; return 0;
} }