diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-29 14:34:02 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-29 14:34:02 +0000 |
commit | 9a530c03732051934d0f0cc96be7658e90e9d5c2 (patch) | |
tree | 69c74580bea36ec6519d7345f4971fced9b19ec0 /src/map/atcommand.c | |
parent | 29856008bba6adc02a38c44ef1f03aef1743b313 (diff) | |
download | hercules-9a530c03732051934d0f0cc96be7658e90e9d5c2.tar.gz hercules-9a530c03732051934d0f0cc96be7658e90e9d5c2.tar.bz2 hercules-9a530c03732051934d0f0cc96be7658e90e9d5c2.tar.xz hercules-9a530c03732051934d0f0cc96be7658e90e9d5c2.zip |
* Ladmin fixes
- Added vs8 project file for ladmin
- Replaced all occurences of printf in ladmin.c with ShowMessage
- Fixed ladmin working with ips using the wrong byte orer
* Fixed @jumpto displaying the incorrect player name
* Added more safeguards to socket.c against socket ids out of range
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10409 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 f7a6813ae..b824774c7 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -1347,7 +1347,7 @@ int atcommand_jumpto(const int fd, struct map_session_data* sd, const char* comm } pc_setpos(sd, pl_sd->mapindex, pl_sd->bl.x, pl_sd->bl.y, 3); - sprintf(atcmd_output, msg_txt(4), atcmd_player_name); // Jumped to %s + sprintf(atcmd_output, msg_txt(4), pl_sd->status.name); // Jumped to %s clif_displaymessage(fd, atcmd_output); return 0; |