Browse Source

Fix quest reward acceptance when there are no items to be accepted, dialog won't keep queueing

Emagi 1 year ago
parent
commit
559c5b6ee9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      EQ2/source/WorldServer/client.cpp

+ 1 - 1
EQ2/source/WorldServer/client.cpp

@@ -5998,7 +5998,7 @@ Quest* Client::GetPendingQuestAcceptance(int32 item_id) {
 			items = quest->GetTmpRewardItems();
 		else
 			items = quest->GetRewardItems();
-		if (item_id == 0 && items && items->size() > 0) {
+		if (item_id == 0) {
 			found_quest = true;
 		}
 		else {