Browse Source

* Follow up to r14383, changed use of clif_font_area to clif_font, seems Skotlex forgot them.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14384 54d463be-8e91-2dee-dedb-b68131a5f0ec
L0ne_W0lf 14 years ago
parent
commit
c7531e095a
3 changed files with 5 additions and 3 deletions
  1. 2 0
      Changelog-Trunk.txt
  2. 2 2
      src/map/atcommand.c
  3. 1 1
      src/map/script.c

+ 2 - 0
Changelog-Trunk.txt

@@ -3,6 +3,8 @@ Date	Added
 AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
+2010/08/19
+	* Rev. 14384 Follow up to r14383, changed use of clif_font_area to clif_font, seems Skotlex forgot them. [L0ne_W0lf]
 2010/08/18
 	* Rev. 14381 Added bonus3 bAdd/SubEle, which allows you to specify a battle flag as well! Dun dun dun! [L0ne_W0lf]
 	- The bonuses are addititive to existing bAdd/SubEles, as that's how it appears to work.

+ 2 - 2
src/map/atcommand.c

@@ -8529,7 +8529,7 @@ int atcommand_font(const int fd, struct map_session_data *sd, const char *comman
 		{
 			sd->state.user_font = 0;
 			clif_displaymessage(fd, "Returning to normal font.");
-			clif_font_area(sd);
+			clif_font(sd);
 		}
 		else
 		{
@@ -8542,7 +8542,7 @@ int atcommand_font(const int fd, struct map_session_data *sd, const char *comman
 	else if( font_id != sd->state.user_font )
 	{
 		sd->state.user_font = font_id;
-		clif_font_area(sd);
+		clif_font(sd);
 		clif_displaymessage(fd, "Font changed.");
 	}
 	else

+ 1 - 1
src/map/script.c

@@ -14271,7 +14271,7 @@ BUILDIN_FUNC(setfont)
 	else
 		sd->state.user_font = 0;
 	
-	clif_font_area(sd);
+	clif_font(sd);
 	return 0;
 }