|
@@ -1577,7 +1577,7 @@ static int npc_selllist_sub(struct map_session_data* sd, int n, unsigned short*
|
|
script_cleararray_pc(sd, "@sold_attribute", (void*)0);
|
|
script_cleararray_pc(sd, "@sold_attribute", (void*)0);
|
|
script_cleararray_pc(sd, "@sold_identify", (void*)0);
|
|
script_cleararray_pc(sd, "@sold_identify", (void*)0);
|
|
|
|
|
|
- for( j = 0; MAX_SLOTS > j; j++ )
|
|
|
|
|
|
+ for( j = 0; j < MAX_SLOTS; j++ )
|
|
{// clear each of the card slot entries
|
|
{// clear each of the card slot entries
|
|
key_card[j] = 0;
|
|
key_card[j] = 0;
|
|
snprintf(card_slot, sizeof(card_slot), "@sold_card%d", j + 1);
|
|
snprintf(card_slot, sizeof(card_slot), "@sold_card%d", j + 1);
|
|
@@ -1598,7 +1598,7 @@ static int npc_selllist_sub(struct map_session_data* sd, int n, unsigned short*
|
|
script_setarray_pc(sd, "@sold_attribute", i, (void*)(intptr_t)sd->status.inventory[idx].attribute, &key_attribute);
|
|
script_setarray_pc(sd, "@sold_attribute", i, (void*)(intptr_t)sd->status.inventory[idx].attribute, &key_attribute);
|
|
script_setarray_pc(sd, "@sold_identify", i, (void*)(intptr_t)sd->status.inventory[idx].identify, &key_identify);
|
|
script_setarray_pc(sd, "@sold_identify", i, (void*)(intptr_t)sd->status.inventory[idx].identify, &key_identify);
|
|
|
|
|
|
- for( j = 0; MAX_SLOTS > j; j++ )
|
|
|
|
|
|
+ for( j = 0; j < MAX_SLOTS; j++ )
|
|
{// store each of the cards from the equipment in the array
|
|
{// store each of the cards from the equipment in the array
|
|
snprintf(card_slot, sizeof(card_slot), "@sold_card%d", j + 1);
|
|
snprintf(card_slot, sizeof(card_slot), "@sold_card%d", j + 1);
|
|
script_setarray_pc(sd, card_slot, i, (void*)(intptr_t)sd->status.inventory[idx].card[j], &key_card[j]);
|
|
script_setarray_pc(sd, card_slot, i, (void*)(intptr_t)sd->status.inventory[idx].card[j], &key_card[j]);
|