Explorar o código

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

Emagi hai 1 ano
pai
achega
559c5b6ee9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 {