diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-03 09:15:29 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-03 09:15:29 +0000 |
commit | 9d3984c630ddb7a3f9aa29e456e05d8e82f617c5 (patch) | |
tree | 88f120493529133c48b541dadf85303c125662e9 /src/map/atcommand.c | |
parent | 8858572dd6887a2c41f9b4d64df3e1491dd3c452 (diff) | |
download | hercules-9d3984c630ddb7a3f9aa29e456e05d8e82f617c5.tar.gz hercules-9d3984c630ddb7a3f9aa29e456e05d8e82f617c5.tar.bz2 hercules-9d3984c630ddb7a3f9aa29e456e05d8e82f617c5.tar.xz hercules-9d3984c630ddb7a3f9aa29e456e05d8e82f617c5.zip |
* Removed leftovers of the item_value_db.txt feature (bugreport:2031, since athena-dev-2.1.1-mod377, followup to pre-svn 2004/05/29).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14553 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 117d6dc0a..6f008c3af 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7419,7 +7419,7 @@ ACMD_FUNC(iteminfo) ); clif_displaymessage(fd, atcmd_output); - 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. ); + sprintf(atcmd_output, "NPC Buy:%dz, Sell:%dz | Weight: %.1f ", item_data->value_buy, item_data->value_sell, item_data->weight/10. ); clif_displaymessage(fd, atcmd_output); if (item_data->maxchance == 10000) |