- corrected @homlevel up and one entry in the homun exp table as reported on the forums by Albator.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7770 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
skotlex 2006-07-20 17:31:39 +00:00
parent 1e4b61c609
commit ce467089e1
3 changed files with 5 additions and 2 deletions

View File

@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/07/20 2006/07/20
* corrected @homlevel up and one entry in the homun exp table as reported
on the forums by Albator. [Skotlex]
* Added the SQL fix to Homunculus skill learning/saving bug [DracoRPG] * Added the SQL fix to Homunculus skill learning/saving bug [DracoRPG]
* Added a status_check_skilluse on skill_attack_area call to prevent splash * Added a status_check_skilluse on skill_attack_area call to prevent splash
damage skills from hitting hidden/trickdead/etc characters. [Skotlex] damage skills from hitting hidden/trickdead/etc characters. [Skotlex]

View File

@ -24,7 +24,7 @@
39420 39420
45460 45460
51750 51750
6150 61500
70910 70910
81030 81030
91510 91510

View File

@ -9527,6 +9527,7 @@ int atcommand_homlevel(
level = MAX_LEVEL - sd->homunculus.level ; level = MAX_LEVEL - sd->homunculus.level ;
if (level >= 1) { if (level >= 1) {
for (i = 1; i <= level ; i++){ for (i = 1; i <= level ; i++){
sd->homunculus.exp += sd->hd->exp_next;
merc_hom_levelup(sd->hd) ; merc_hom_levelup(sd->hd) ;
} }
clif_misceffect2(&sd->hd->bl,568) ; clif_misceffect2(&sd->hd->bl,568) ;