|
@@ -9473,7 +9473,7 @@ int atcommand_iteminfo(
|
|
|
);
|
|
|
clif_displaymessage(fd, atcmd_output);
|
|
|
|
|
|
- sprintf(atcmd_output, "NPC Buy:%dz%s, Sell:%dz%s | Weight: %d ", item_data->value_buy, item_data->flag.value_notdc ? "(No Discount!)":"", item_data->value_sell, item_data->flag.value_notoc ? "(No Overcharge!)":"", item_data->weight );
|
|
|
+ sprintf(atcmd_output, "NPC Buy:%dz%s, Sell:%dz%s | Weight: %.1f ", item_data->value_buy, item_data->flag.value_notdc ? "(No Discount!)":"", item_data->value_sell, item_data->flag.value_notoc ? "(No Overcharge!)":"", item_data->weight/10. );
|
|
|
clif_displaymessage(fd, atcmd_output);
|
|
|
|
|
|
if (item_data->maxchance == 10000)
|