Fixed some annoying stuff

This commit is contained in:
Unknown
2024-04-20 15:54:40 +02:00
parent 1b9ac3f30a
commit b8e4ef7c04
2 changed files with 18 additions and 9 deletions

View File

@ -2606,9 +2606,9 @@ namespace Cheat {
int isOwner = StateBP->PlayerId == PlayerStuff::PlayerList[0].PlayerID && StateBP->PlayerId < PlayerController->PlayerState->PlayerId;
std::string Role = isOwner ? " (Owner)" : "";
std::wstring Role = isOwner ? L" (Owner)" : L"";
UsefullFuncs::DrawBoxOnActor(Canvas, CurrentEnemy, isOwner ? UsefullFuncs::RGBATOFLinear(0, 255, 255, 255) : UsefullFuncs::RGBATOFLinear(0, 255, 0, 255), true, UsefullFuncs::stringToWideString(std::string(StateBP->PlayerNamePrivate.ToString() + Role)).c_str());
UsefullFuncs::DrawBoxOnActor(Canvas, CurrentEnemy, isOwner ? UsefullFuncs::RGBATOFLinear(0, 255, 255, 255) : UsefullFuncs::RGBATOFLinear(0, 255, 0, 255), true, std::wstring(PlayerStuff::Player::SanitizeWString(StateBP->PlayerNamePrivate.ToWString()) + Role).c_str());
}