Browse Source

Quest Completed Description no longer returning nullptr

Emagi 1 year ago
parent
commit
e0c066fee3
1 changed files with 1 additions and 3 deletions
  1. 1 3
      EQ2/source/WorldServer/Quests.cpp

+ 1 - 3
EQ2/source/WorldServer/Quests.cpp

@@ -1597,9 +1597,7 @@ void Quest::SetCompletedDescription(string desc){
 }
 
 const char* Quest::GetCompletedDescription(){
-	if(completed_description.size() > 0)
-		return completed_description.c_str();
-	return 0;
+	return completed_description.c_str();
 }
 
 void Quest::AddCompleteAction(int32 step, string action){