// Target: PythonTextTail.cpp
// Search:
// ShowCharacterTextTail - after duplicate-list check

// Add early return if owner not shown

	{
		return;
	}

	if (!pTextTail->pOwner->isShow())
		return;

	CInstanceBase * pInstance = CPythonCharacterManager::Instance().GetInstancePtr(pTextTail->dwVirtualID);
	if (!pInstance)
		return;

	if (pInstance->IsGuildWall())
		return;

	if (pInstance->CanPickInstance())
		m_CharacterTextTailList.push_back(pTextTail);
