summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-08-30 05:01:39 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-08-30 05:01:39 +0000
commit50a85fdbd90fd7353f091084b43877a3f6ae5a61 (patch)
tree479b7d2704bcdefb48c7068447eb15b663f37d49
parent8ec06e1832af8a2f68bd8d79b7ade09d861a2dea (diff)
downloadhercules-50a85fdbd90fd7353f091084b43877a3f6ae5a61.tar.gz
hercules-50a85fdbd90fd7353f091084b43877a3f6ae5a61.tar.bz2
hercules-50a85fdbd90fd7353f091084b43877a3f6ae5a61.tar.xz
hercules-50a85fdbd90fd7353f091084b43877a3f6ae5a61.zip
- Oops, forgot a very important check in homevolution D:
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11092 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--src/map/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 31fba0429..d115e6df3 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;
}