diff --git a/Sources/Sandbox.Game/Game/World/MySession.cs b/Sources/Sandbox.Game/Game/World/MySession.cs index 2752c3ea5..eda357f23 100644 --- a/Sources/Sandbox.Game/Game/World/MySession.cs +++ b/Sources/Sandbox.Game/Game/World/MySession.cs @@ -402,7 +402,7 @@ public bool IsUserPromoted( ulong steamId ) HashSet m_adminMode = new HashSet(); public bool IsAdminModeEnabled(ulong user) { - return m_adminMode.Contains(user) && HasPlayerAdminRights(user); + return m_adminMode.Contains(user) || HasPlayerAdminRights(user); } public void EnableAdminMode(ulong user,bool value) @@ -2381,4 +2381,4 @@ private static Vector3D GetLocalPlayerPosition() return default(Vector3D); } } -} \ No newline at end of file +}