summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c7
1 files changed, 7 insertions, 0 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;
}