diff --git a/ChobbyLauncher/ChobbyLauncher.csproj b/ChobbyLauncher/ChobbyLauncher.csproj index 19aff4d56..c97f60e57 100644 --- a/ChobbyLauncher/ChobbyLauncher.csproj +++ b/ChobbyLauncher/ChobbyLauncher.csproj @@ -163,7 +163,7 @@ - + diff --git a/ZkLobbyServer/ZkLobbyServer.cs b/ZkLobbyServer/ZkLobbyServer.cs index fe81cb001..bfc5146ab 100644 --- a/ZkLobbyServer/ZkLobbyServer.cs +++ b/ZkLobbyServer/ZkLobbyServer.cs @@ -212,6 +212,9 @@ public bool CanUserSee(ConnectedUser uWatcher, ConnectedUser uWatched) // admins always visible if (uWatched.User?.IsAdmin == true) return true; + // admins see everybody + if (uWatcher.User?.IsAdmin == true) return true; + // friends see each other if (uWatcher.FriendNames.Contains(uWatched.Name)) return true;