Browse Source

Make share button available independent of quest being hidden, visible, got mixed up in the last update

Emagi 1 year ago
parent
commit
8b328c87df
1 changed files with 2 additions and 1 deletions
  1. 2 1
      EQ2/source/WorldServer/Player.cpp

+ 2 - 1
EQ2/source/WorldServer/Player.cpp

@@ -4431,7 +4431,8 @@ PacketStruct* Player::GetQuestJournalPacket(bool all_quests, int16 version, int3
 					else if(!quest->IsHidden()) {
 						display_status += QUEST_DISPLAY_STATUS_SHOW;
 					}
-					else if(quest->CanShareQuestCriteria(GetClient(),false)) {
+					
+					if(quest->CanShareQuestCriteria(GetClient(),false)) {
 						display_status += QUEST_DISPLAY_STATUS_CAN_SHARE;
 					}
 				}