summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-06-05 08:56:26 +0000
committershadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-06-05 08:56:26 +0000
commitb778c91be709f03fcdf7cb29a3f775f684143b14 (patch)
treed12d4e4406012bb4bed64aedf48f89a559443988
parent5e6a178268895c3900b0bd40bbacadf6fbcb483f (diff)
downloadhercules-b778c91be709f03fcdf7cb29a3f775f684143b14.tar.gz
hercules-b778c91be709f03fcdf7cb29a3f775f684143b14.tar.bz2
hercules-b778c91be709f03fcdf7cb29a3f775f684143b14.tar.xz
hercules-b778c91be709f03fcdf7cb29a3f775f684143b14.zip
Fixed @mi/@mobinfo not showing the name collumns correcly
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6974 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--src/map/atcommand.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 91f8af8ca..c2b1932af 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/06/03
+ * Fixed @mi/@mobinfo not showing the name collumns correcly [shadow]
* Solved the bug that made firewalls only castable a few times until [MasterOfMuppets]
you relogged. Thanks to Euph for the fix.
* Added variable other_mapserver_count to chrif.c which holds total count
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index c0a347a4a..859ea567c 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -9369,9 +9369,9 @@ int atcommand_mobinfo(
// stats
if (mob->mexp)
- sprintf(atcmd_output, "MVP Monster: '%s'/'%s' (%d)", mob->name, mob->jname, mob_id);
+ sprintf(atcmd_output, "MVP Monster: '%s'/'%s'/'%s' (%d)", mob->name, mob->jname, mob->sprite, mob_id);
else
- sprintf(atcmd_output, "Monster: '%s'/'%s' (%d)", mob->name, mob->jname, mob_id);
+ sprintf(atcmd_output, "Monster: '%s'/'%s'/'%s' (%d)", mob->name, mob->jname, mob->sprite, mob_id);
clif_displaymessage(fd, atcmd_output);
sprintf(atcmd_output, " Level:%d HP:%d SP:%d Base EXP:%d Job EXP:%d", mob->lv, mob->status.max_hp, mob->status.max_sp, mob->base_exp, mob->job_exp);
clif_displaymessage(fd, atcmd_output);