PlayFab / PlayFabMultiplayerUnreal

PlayFab Online Subsystem Plugin for Unreal Engine
https://learn.microsoft.com/en-us/gaming/playfab/features/multiplayer/networking/party-unreal-engine-oss-overview
39 stars 35 forks source link

Fix init when steam is not running #60

Closed bschatt closed 4 months ago

bschatt commented 7 months ago

When starting the game with Steam closed the Steam OSS can't initialize and the Null OSS is initialized instead.

In this case, the check was crashing our game in Dev/Test. In Shipping the game was starting correctly but it wasn't working because auth was not implemented in the Null OSS.

Returning false when the Native OSS is not available seems like a better option here. Alternatively we could just remove the check?

bschatt commented 4 months ago

Integrated in PR #64 (commit d0e8bfd0456b871702677b7c8485af2c746e3221)