summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-15 18:33:32 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-15 18:33:32 +0000
commit1197558778704f21e962aaadcae6c8d09dc7f9b5 (patch)
treef9200e3f1aff52c4c6cf20f2765658e699033e5d /src/map/atcommand.c
parent9f49994f8740db8b4c1a4b34f0c79ab95a4f6049 (diff)
downloadhercules-1197558778704f21e962aaadcae6c8d09dc7f9b5.tar.gz
hercules-1197558778704f21e962aaadcae6c8d09dc7f9b5.tar.bz2
hercules-1197558778704f21e962aaadcae6c8d09dc7f9b5.tar.xz
hercules-1197558778704f21e962aaadcae6c8d09dc7f9b5.zip
- Removed the hardcoded duration of 30seconds for sleep.
- Fixed rangecheck for pet skill usage of INF_SELF_SKILL - Removed inall/exall from atcommand.conf since those two do not exist! (pointed out by Ancyker) - @me now uses entry 270 in msg_athena as output format. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5615 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index a9f3ccef2..4bc9d5ec5 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -9700,7 +9700,7 @@ int atcommand_me(
}
sscanf(message, "%199[^\n]", tempmes);
- sprintf(atcmd_output, "* %s %s *", sd->status.name, tempmes);
+ sprintf(atcmd_output, msg_txt(270), sd->status.name, tempmes);
clif_disp_overhead(sd, atcmd_output);
return 0;