diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-07 15:41:40 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-07 15:41:40 +0000 |
commit | b4d8c6be13e3755ec9104f5317b88069860e5aef (patch) | |
tree | fec2a5a2beea7c914cfbde18119c0d74f25d350b | |
parent | 120b4028f5f30b7e8f989d0f2418147d0a8cf82a (diff) | |
download | hercules-b4d8c6be13e3755ec9104f5317b88069860e5aef.tar.gz hercules-b4d8c6be13e3755ec9104f5317b88069860e5aef.tar.bz2 hercules-b4d8c6be13e3755ec9104f5317b88069860e5aef.tar.xz hercules-b4d8c6be13e3755ec9104f5317b88069860e5aef.zip |
- Fixed item info not displaying the found item id... ~.~
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7036 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/atcommand.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index dfa4b7c10..11e485815 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/07
+ * Fixed item info not displaying the found item id [Skotlex]
* Fixed item info not displaying the weight value properly. [Skotlex]
* Adjusted status resistances and durations taking as base Viccious's info
from the kro guidebook. [Skotlex]
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 0fff320cd..4045e8951 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -9445,7 +9445,7 @@ int atcommand_iteminfo( //, "Lure/Scroll"}; No need, type 11 items are converted to type 2 upon loading [Skotlex]
struct item_data *item_data, *item_array[MAX_SEARCH];
- int i, item_id=0, count = 1;
+ int i, count = 1;
if (!message || !*message) {
clif_displaymessage(fd, "Please, enter Item name or its ID (usage: @iteminfo <item_name_or_ID>).");
@@ -9467,7 +9467,7 @@ int atcommand_iteminfo( for (i = 0; i < count; i++) {
item_data = item_array[i];
sprintf(atcmd_output, "Item: '%s'/'%s'[%d] (%d) Type: %s | Extra Effect: %s",
- item_data->name,item_data->jname,item_data->slot,item_id,
+ item_data->name,item_data->jname,item_data->slot,item_data->nameid,
item_data->type < 12 ? itype[item_data->type] : "BUG!",
(item_data->script==NULL)? "None" : "With script"
);
|