Core/Pet: Fix GetDebugInfo() output

This commit is contained in:
jackpoz
2020-09-22 20:41:00 +02:00
parent 899932a275
commit 16292f9d94

View File

@@ -2030,7 +2030,7 @@ std::string Pet::GetDebugInfo() const
std::stringstream sstr;
sstr << Guardian::GetDebugInfo() << "\n"
<< std::boolalpha
<< "PetType: " << std::to_string(getPetType())
<< "PetType: " << std::to_string(getPetType()) << " "
<< "PetNumber: " << m_charmInfo->GetPetNumber();
return sstr.str();
}