diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-30 04:39:59 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-30 04:39:59 +0000 |
commit | 8ec06e1832af8a2f68bd8d79b7ade09d861a2dea (patch) | |
tree | 825a318c8d4496eafa5af8edb785700fee0babbc /src/map/atcommand.c | |
parent | d35ff1c213b7d77cc45c037e950a180c08279cd6 (diff) | |
download | hercules-8ec06e1832af8a2f68bd8d79b7ade09d861a2dea.tar.gz hercules-8ec06e1832af8a2f68bd8d79b7ade09d861a2dea.tar.bz2 hercules-8ec06e1832af8a2f68bd8d79b7ade09d861a2dea.tar.xz hercules-8ec06e1832af8a2f68bd8d79b7ade09d861a2dea.zip |
- Cleaned up a bit the homunculus evolution code, and fixed homevolution allowing the homunc to 're-evolve' even though it was already evolved.
- Optimized a bit the skillheal code in regards to Apple of Idun and Sanctuary
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11090 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index b57f2bd75..aa6931d74 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -8307,11 +8307,8 @@ int atcommand_homevolution(const int fd, struct map_session_data* sd, const char return -1; } - if (sd->hd->homunculusDB->evo_class) - { - merc_hom_evolution(sd->hd) ; + if ( merc_hom_evolution(sd->hd) ) return 0; - } clif_displaymessage(fd, "Your homunculus doesn't evolve."); return -1; |