From a433cc6ff13ee1bff4a97c92af430cfc54855b6d Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 28 Feb 2026 11:04:09 -0500 Subject: [PATCH] Clarify two properties and their functionality --- SabreTools.RedumpLib/Web/RedumpClient.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SabreTools.RedumpLib/Web/RedumpClient.cs b/SabreTools.RedumpLib/Web/RedumpClient.cs index 5e020bd..0713897 100644 --- a/SabreTools.RedumpLib/Web/RedumpClient.cs +++ b/SabreTools.RedumpLib/Web/RedumpClient.cs @@ -21,11 +21,13 @@ namespace SabreTools.RedumpLib.Web /// /// Determines if user is logged into Redump /// + /// Modifying to set as true does not change actual logged-in status public bool LoggedIn { get; private set; } = false; /// /// Determines if the user is a staff member /// + /// Modifying to set as true does not change actual staff status public bool IsStaff { get; private set; } = false; ///