Explorar el Código

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

Emagi hace 1 año
padre
commit
559c5b6ee9
Se han modificado 1 ficheros con 1 adiciones y 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 {