summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-25 03:19:47 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-25 03:19:47 +0000
commit509650b5b1c3c5137b50e4b82dbc1f2a6ed3b141 (patch)
tree727bda6147c7a7ebd8762abb750b961b98689fd9 /src/map/atcommand.c
parent71402dcc1b56c68896a043a66faec201826ac289 (diff)
downloadhercules-509650b5b1c3c5137b50e4b82dbc1f2a6ed3b141.tar.gz
hercules-509650b5b1c3c5137b50e4b82dbc1f2a6ed3b141.tar.bz2
hercules-509650b5b1c3c5137b50e4b82dbc1f2a6ed3b141.tar.xz
hercules-509650b5b1c3c5137b50e4b82dbc1f2a6ed3b141.zip
- Incremented the number of iterations to find a random stop to 100 as 50 seems to no be enough for certain maps.
- Fixed iteminfo only displaying first result when there were many. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5744 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 8db4597cd..92ec003e5 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -9429,7 +9429,7 @@ int atcommand_iteminfo(
clif_displaymessage(fd, atcmd_output);
count = MAX_SEARCH;
}
- for (i = 0; i < MAX_SEARCH; i++) {
+ 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,
@@ -9449,11 +9449,8 @@ int atcommand_iteminfo(
strcpy(atcmd_output, " - Monsters don't drop this item");
clif_displaymessage(fd, atcmd_output);
- return 0;
}
-
- clif_displaymessage(fd, "Item not found.");
- return -1;
+ return 0;
}
/*==========================================