Ver Fonte

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

Emagi há 1 ano atrás
pai
commit
559c5b6ee9
1 ficheiros alterados com 1 adições e 1 exclusões
  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 {