diff options
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/clif.c | 7 | ||||
-rw-r--r-- | src/map/map.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 663ef51ea..71742011d 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -2273,6 +2273,13 @@ int clif_updatestatus(struct map_session_data *sd,int type) } WFIFOSET(fd,len); + if( type == SP_SPEED ) + { + char buf[256]; + sprintf(buf, "Your walk speed is now %d", sd->battle_status.speed); + clif_displaymessage(fd, buf); + } + return 0; } diff --git a/src/map/map.h b/src/map/map.h index 954e211b9..03e96d831 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -151,7 +151,7 @@ enum { #define CHATROOM_TITLE_SIZE (36 + 1) #define CHATROOM_PASS_SIZE (8 + 1) //Max allowed chat text length -#define CHAT_SIZE_MAX 256 +#define CHAT_SIZE_MAX (255 + 1) #define DEFAULT_AUTOSAVE_INTERVAL 5*60*1000 |