diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/atcommand.c | 4 | ||||
-rw-r--r-- | src/map/script.c | 2 |
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; } |