summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
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 /src/map/atcommand.c
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
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c4
1 files changed, 2 insertions, 2 deletions
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