diff options
Diffstat (limited to 'src/emap/script_buildins.c')
-rw-r--r-- | src/emap/script_buildins.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/emap/script_buildins.c b/src/emap/script_buildins.c index 3775814..6acdde0 100644 --- a/src/emap/script_buildins.c +++ b/src/emap/script_buildins.c @@ -409,10 +409,8 @@ BUILDIN(requestItemIndex) st->state = RERUNLINE; // send item request - if (client && client->clientVersion >= 11) + if (client) send_npccommand(sd, st->oid, 11); - else - clif->scriptinputstr(sd, st->oid); } else { @@ -462,10 +460,8 @@ BUILDIN(requestItemsIndex) st->state = RERUNLINE; // send item request with limit count - if (client && client->clientVersion >= 11) + if (client) send_npccommand2(sd, st->oid, 11, count, 0, 0); - else - clif->scriptinputstr(sd, st->oid); } else { |