summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorJedzkie <jedzkie999@gmail.com>2017-07-11 10:03:59 +0800
committerJedzkie <jedzkie999@gmail.com>2017-07-11 10:03:59 +0800
commit94990c64c300c9b72509ec3cc9082538ef7105bf (patch)
tree2f4cfca9aa7648ea5d57ad394a952e9b7c43a77f /src/map/pc.c
parentdc98b569d9ea5eb396720bf68da617d81560229f (diff)
downloadhercules-94990c64c300c9b72509ec3cc9082538ef7105bf.tar.gz
hercules-94990c64c300c9b72509ec3cc9082538ef7105bf.tar.bz2
hercules-94990c64c300c9b72509ec3cc9082538ef7105bf.tar.xz
hercules-94990c64c300c9b72509ec3cc9082538ef7105bf.zip
Removed 'NO MSG' message in clients < 20101123. Follow up https://github.com/HerculesWS/Hercules/commit/60f9a68f90d495323e9e4533c7a1573ca5d86e71
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index aedb029b6..a925b523c 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -5118,9 +5118,8 @@ int pc_useitem(struct map_session_data *sd,int n) {
clif->msgtable_num(sd, MSG_SECONDS_UNTIL_USE, delay_tick + 1); // [%d] seconds left until you can use
#else
char delay_msg[100];
- clif->msgtable_num(sd, MSG_SECONDS_UNTIL_USE, delay_tick + 1); // [%d] seconds left until you can use
sprintf(delay_msg, msg_sd(sd, 26), delay_tick + 1);
- clif->messagecolor_self(sd->fd, COLOR_YELLOW, delay_msg);
+ clif->messagecolor_self(sd->fd, COLOR_YELLOW, delay_msg); // [%d] seconds left until you can use
#endif
return 0; // Delay has not expired yet
}