Skip to content

Commit

Permalink
Update Archipelago.MultiClient.Net/Helpers/PlayerHelper.cs
Browse files Browse the repository at this point in the history
Co-authored-by: BadMagic100 <[email protected]>
  • Loading branch information
ScipioWright and BadMagic100 authored Oct 26, 2024
1 parent c1a7b24 commit b7575ff
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Archipelago.MultiClient.Net/Helpers/PlayerHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,7 @@ public IEnumerable<PlayerInfo> GetGroupMembers(IPlayerHelper playerHelper)
/// <returns>Returns whether the player is a group</returns>
public bool IsGroup()
{
if (GroupMembers != null && GroupMembers.Length > 0)
return true;
return false;
return GroupMembers != null && GroupMembers.Length > 0;
}

/// <summary>
Expand Down

0 comments on commit b7575ff

Please sign in to comment.