From f6c97de34412bff7712b503c8aaa24be5c9e7b85 Mon Sep 17 00:00:00 2001 From: skotlex Date: Thu, 30 Aug 2007 05:01:39 +0000 Subject: [PATCH] - 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 --- src/map/script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/script.c b/src/map/script.c index 31fba0429e..d115e6df34 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -8737,7 +8737,7 @@ BUILDIN_FUNC(homunculus_evolution) { TBL_PC *sd; 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); return 0; }