summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-08-19 17:24:27 +0000
committerL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2010-08-19 17:24:27 +0000
commit55093c6d497a8b5ef0925ede48bf1122050b99db (patch)
tree59c41ccc37a5e9a14dc42060d578c8cde9aa2e24
parentaf7c783667e77887131d186f51fb60f7dc31b87c (diff)
downloadhercules-55093c6d497a8b5ef0925ede48bf1122050b99db.tar.gz
hercules-55093c6d497a8b5ef0925ede48bf1122050b99db.tar.bz2
hercules-55093c6d497a8b5ef0925ede48bf1122050b99db.tar.xz
hercules-55093c6d497a8b5ef0925ede48bf1122050b99db.zip
* Follow up to r14383, changed use of clif_font_area to clif_font, seems Skotlex forgot them.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14384 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/map/atcommand.c4
-rw-r--r--src/map/script.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index e934518d0..fd7939520 100644
--- a/Changelog-Trunk.txt
+++ b/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.
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 6cb27551b..eb1632b26 100644
--- a/src/map/atcommand.c
+++ b/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
diff --git a/src/map/script.c b/src/map/script.c
index bf81b984f..c0a44d90f 100644
--- a/src/map/script.c
+++ b/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;
}