Skip to content

Commit

Permalink
minor patch
Browse files Browse the repository at this point in the history
  • Loading branch information
ShimmyMySherbet committed May 14, 2022
1 parent 13c0b91 commit 405f677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SherbetVaults/Models/OfflinePlayerUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static (ulong playerID, Task<string> playerNameTask) GetPlayerParallel(st

if (player != null)
{
return (player.CSteamID.m_SteamID, Task.FromResult(player.DisplayName)));
return (player.CSteamID.m_SteamID, Task.FromResult(player.DisplayName));
}

return (0ul, Task.FromResult(string.Empty));
Expand Down

0 comments on commit 405f677

Please sign in to comment.