fixed collection items throwing a no quest found error in logs
This commit is contained in:
parent
276dd356b6
commit
8d943b8c42
1 changed files with 3 additions and 0 deletions
|
@ -3565,7 +3565,10 @@ void Commands::Process(int32 index, EQ2_16BitString* command_parms, Client* clie
|
|||
}
|
||||
bool collectedItems = false;
|
||||
if (collection = player->GetPendingCollectionReward())
|
||||
{
|
||||
client->AcceptCollectionRewards(collection, selectable_item_id);
|
||||
collectedItems = true;
|
||||
}
|
||||
else if (client->GetPlayer()->HasPendingItemRewards()) {
|
||||
vector<Item*> items = client->GetPlayer()->GetPendingItemRewards();
|
||||
if (items.size() > 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue