From f0229942aa9c92f4b7750fd2e56903d714a99351 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Sat, 29 Mar 2014 23:02:45 -0300 Subject: Fixed Bug 8091 @mi mvp drops now displays item slot, special thanks to Tepoo, Haru. http://hercules.ws/board/tracker/issue-8091-mi-mvp-reward-equipment-slot-information-bugged/ Signed-off-by: shennetsind --- src/map/atcommand.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/map/atcommand.c') diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 07079c1f9..09159c3f7 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -6646,10 +6646,10 @@ ACMD(mobinfo) continue; if (monster->mvpitem[i].p > 0) { j++; - if (j == 1) - sprintf(atcmd_output2, " %s %02.02f%%", item_data->jname, (float)monster->mvpitem[i].p / 100); + if(item_data->slot) + sprintf(atcmd_output2, " %s%s[%d] %02.02f%%",j != 1 ? "- " : "", item_data->jname, item_data->slot, (float)monster->mvpitem[i].p / 100); else - sprintf(atcmd_output2, " - %s %02.02f%%", item_data->jname, (float)monster->mvpitem[i].p / 100); + sprintf(atcmd_output2, " %s%s %02.02f%%",j != 1 ? "- " : "", item_data->jname, (float)monster->mvpitem[i].p / 100); strcat(atcmd_output, atcmd_output2); } } -- cgit v1.2.3-60-g2f50