Skip to content

Commit

Permalink
Add PSP title id
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Sep 2, 2023
1 parent b42d456 commit d71db61
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Refresh.GameServer/Authentication/TokenGameUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ public static class TokenGameUtility
"CUSA00693",
};

private static readonly string[] LittleBigPlanetPSPTitles =
{
"UCUS98744",
};

private static readonly string[] LittleBigPlanetVitaTitles =
{
"PCSC00013",
Expand All @@ -104,6 +109,7 @@ public static class TokenGameUtility
if (LittleBigPlanet1Titles.Contains(titleId)) return TokenGame.LittleBigPlanet1;
if (LittleBigPlanet2Titles.Contains(titleId)) return TokenGame.LittleBigPlanet2;
if (LittleBigPlanet3Titles.Contains(titleId)) return TokenGame.LittleBigPlanet3;
if (LittleBigPlanetPSPTitles.Contains(titleId)) return TokenGame.LittleBigPlanetPSP;
if (LittleBigPlanetVitaTitles.Contains(titleId)) return TokenGame.LittleBigPlanetVita;

return null;
Expand Down

0 comments on commit d71db61

Please sign in to comment.