Card compounding window no longer appears if no slotted items are available. (Hercules 763102b)
Signed-off-by: Euphy <euphy.raliel@rathena.org>
This commit is contained in:
parent
40f70143d4
commit
89896d751a
@ -5936,9 +5936,15 @@ void clif_use_card(struct map_session_data *sd,int idx)
|
||||
if( j == sd->inventory_data[i]->slot ) // No room
|
||||
continue;
|
||||
|
||||
if( sd->status.inventory[i].equip > 0 ) // Do not check items that are already equipped
|
||||
continue;
|
||||
|
||||
WFIFOW(fd,4+c*2)=i+2;
|
||||
c++;
|
||||
}
|
||||
|
||||
if( !c ) return; // no item is available for card insertion
|
||||
|
||||
WFIFOW(fd,2)=4+c*2;
|
||||
WFIFOSET(fd,WFIFOW(fd,2));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user