浏览代码

Fixed @mi/@mobinfo not showing the name collumns correcly

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6974 54d463be-8e91-2dee-dedb-b68131a5f0ec
shadow 19 年之前
父节点
当前提交
966c0e57c0
共有 2 个文件被更改,包括 3 次插入2 次删除
  1. 1 0
      Changelog-Trunk.txt
  2. 2 2
      src/map/atcommand.c

+ 1 - 0
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

+ 2 - 2
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);