diff options
author | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-02 20:41:22 +0000 |
---|---|---|
committer | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-02 20:41:22 +0000 |
commit | 2b2dae078de159cd4d9948824689cc9f62ef6263 (patch) | |
tree | 880f67537dcde3a2dfdb0239f4b16ff7f76e2f93 | |
parent | dc3d5221ddad6a0f94133bf8b83f9c0c76ff85b4 (diff) | |
download | hercules-2b2dae078de159cd4d9948824689cc9f62ef6263.tar.gz hercules-2b2dae078de159cd4d9948824689cc9f62ef6263.tar.bz2 hercules-2b2dae078de159cd4d9948824689cc9f62ef6263.tar.xz hercules-2b2dae078de159cd4d9948824689cc9f62ef6263.zip |
- Small change to @version command (fixed invalid project name)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15821 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 978feb552..7301a2252 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7205,7 +7205,7 @@ ACMD_FUNC(version) const char * revision; if ((revision = get_svn_revision()) != 0) { - sprintf(atcmd_output,"eAthena Version SVN r%s",revision); + sprintf(atcmd_output,"rAthena Version SVN r%s",revision); clif_displaymessage(fd,atcmd_output); } else clif_displaymessage(fd,"Cannot determine SVN revision"); |