Implemented official level update fix

This commit is contained in:
2024-03-11 18:07:11 +02:00
parent 284a9a3f29
commit fb64ecafe7
3 changed files with 36 additions and 16 deletions

View File

@ -1524,6 +1524,12 @@ bool CPythonNetworkStream::RecvPointChange()
}
}
}
else if (POINT_LEVEL == PointChange.Type)
{
CInstanceBase* pOtherInstance = CPythonCharacterManager::Instance().GetInstancePtr(PointChange.dwVID);
if (pOtherInstance)
pOtherInstance->UpdateTextTailLevel(PointChange.value);
}
return true;
}