Browse Source

Fixed @homlvup

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8346 54d463be-8e91-2dee-dedb-b68131a5f0ec
toms 19 years ago
parent
commit
f07bb1871a
2 changed files with 9 additions and 4 deletions
  1. 1 0
      Changelog-Trunk.txt
  2. 8 4
      src/map/atcommand.c

+ 1 - 0
Changelog-Trunk.txt

@@ -4,6 +4,7 @@ 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.
 
 2006/08/18
+	* Fixed @homlvup [Toms]
 	* Added guild_aura (skill.conf) setting so you can specify when it works
 	  and if it works on the guild-master itself. Defaults to working all the
 	  time on everyone except GM. [Skotlex]

+ 8 - 4
src/map/atcommand.c

@@ -9775,6 +9775,7 @@ int atcommand_homlevel(
 	const int fd, struct map_session_data* sd,
 	const char* command, const char* message)
 {
+	TBL_HOM * hd;
 	int level = 0, i = 0;
 
 	nullpo_retr(-1, sd);
@@ -9786,12 +9787,15 @@ int atcommand_homlevel(
 		return 1 ;
 
 	level = atoi(message);
+	hd = sd->hd;
 	
-	for (i = 1; i <= level && sd->hd->exp_next; i++){
-		sd->homunculus.exp += sd->hd->exp_next;
-		merc_hom_levelup(sd->hd);
+	for (i = 1; i <= level && hd->exp_next; i++){
+		sd->homunculus.exp += hd->exp_next;
+		merc_hom_levelup(hd);
 	}
-	clif_misceffect2(&sd->hd->bl,568);
+	status_calc_homunculus(hd,0);
+	status_percent_heal(&hd->bl, 100, 100);
+	clif_misceffect2(&hd->bl,568);
 	return 0;
 }