Skip to content

Commit

Permalink
Return the max party size to 4 (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheshire92 authored and jcsnider committed Jul 30, 2020
1 parent ef8ed40 commit 0219475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Intersect.Server/Entities/Player.cs
Expand Up @@ -3831,7 +3831,7 @@ public void AddParty(Player target)
}
}

if (Party.Count < Options.Party.MaximumMembers)
if (Party.Count < 4)
{
target.LeaveParty();
Party.Add(target);
Expand Down

0 comments on commit 0219475

Please sign in to comment.