diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-30 05:01:39 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-30 05:01:39 +0000 |
commit | 50a85fdbd90fd7353f091084b43877a3f6ae5a61 (patch) | |
tree | 479b7d2704bcdefb48c7068447eb15b663f37d49 /src | |
parent | 8ec06e1832af8a2f68bd8d79b7ade09d861a2dea (diff) | |
download | hercules-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
Diffstat (limited to 'src')
-rw-r--r-- | src/map/script.c | 2 |
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; } |