diff --git a/Torch.Server/MultiplayerManager.cs b/Torch.Server/MultiplayerManager.cs index 6f9b51b..66d8ffb 100644 --- a/Torch.Server/MultiplayerManager.cs +++ b/Torch.Server/MultiplayerManager.cs @@ -252,11 +252,11 @@ namespace Torch.Server } } - private void UserGroupStatus(ulong userId, ulong groupId, bool member, bool officier) + private void UserGroupStatus(ulong userId, ulong groupId, bool member, bool officer) { if (groupId == MySandboxGame.ConfigDedicated.GroupID && _waitingForGroup.Remove(userId)) { - if ((member || officier)) + if (member || officer) { UserAccepted(userId); } diff --git a/Torch/Torch.csproj b/Torch/Torch.csproj index abca804..1f70850 100644 --- a/Torch/Torch.csproj +++ b/Torch/Torch.csproj @@ -121,7 +121,11 @@ - + + + + +