You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix ensure when starting Lyra dedicated server, my settings changes did not handle this case
#rb none #jira UE-186295 #preflight none [CL 25550327 by ben zeigler in ue5-main branch]
This commit is contained in:
@@ -148,7 +148,8 @@ void ULyraGameInstance::HandlerUserInitialized(const UCommonUserInfo* UserInfo,
|
||||
{
|
||||
ULyraLocalPlayer* LocalPlayer = Cast<ULyraLocalPlayer>(GetLocalPlayerByIndex(UserInfo->LocalPlayerIndex));
|
||||
|
||||
if (ensure(LocalPlayer))
|
||||
// There will not be a local player attached to the dedicated server user
|
||||
if (LocalPlayer)
|
||||
{
|
||||
LocalPlayer->LoadSharedSettingsFromDisk();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user