diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-02 17:36:59 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-02 17:36:59 +0000 |
commit | 767b08018e035e1d04e7d83ea923a146626761f0 (patch) | |
tree | b111819e70fb84200bef87bc8d567c84bff7130d /src/map/atcommand.c | |
parent | 65b3428fad4d6371253e8492cb1d1149eefafbb1 (diff) | |
download | hercules-767b08018e035e1d04e7d83ea923a146626761f0.tar.gz hercules-767b08018e035e1d04e7d83ea923a146626761f0.tar.bz2 hercules-767b08018e035e1d04e7d83ea923a146626761f0.tar.xz hercules-767b08018e035e1d04e7d83ea923a146626761f0.zip |
Fixed wrong mvp format string for @mobinfo (would not show big mvp exp rewards correctly).
Added data length check to chrif_authok(), to detect a mismatch between charserver's and mapserver's mmo_charstatus structure size.
Corrected some typos in the cash shop code.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12277 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-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 e32f288ce..f0c91da5c 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -6962,7 +6962,7 @@ int atcommand_mobinfo(const int fd, struct map_session_data* sd, const char* com clif_displaymessage(fd, atcmd_output); // mvp if (mob->mexp) { - sprintf(atcmd_output, " MVP Bonus EXP:%d %02.02f%%", mob->mexp, (float)mob->mexpper / 100); + sprintf(atcmd_output, " MVP Bonus EXP:%u %02.02f%%", mob->mexp, (float)mob->mexpper / 100); clif_displaymessage(fd, atcmd_output); strcpy(atcmd_output, " MVP Items:"); j = 0; |