]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
docs: update comment on config saving in tests (#39438)
authorPerry Fraser <perryprog@users.noreply.github.com>
Wed, 6 Aug 2025 23:17:20 +0000 (19:17 -0400)
committerGitHub <noreply@github.com>
Wed, 6 Aug 2025 23:17:20 +0000 (01:17 +0200)
Content.Client/Playtime/ClientsidePlaytimeTrackingManager.cs

index 330ff9122ff475cff444c6633426825475737eb2..9a4f75d59655ff0aafacae8a7ac855e45b265ce9 100644 (file)
@@ -94,7 +94,7 @@ public sealed class ClientsidePlaytimeTrackingManager
             return;
         }
 
-        // At less than 1 minute of time diff, there's not much point, and saving regardless will brick tests
+        // At less than 1 minute of time diff, there's not much point
         // The reason this isn't checking for 0 is because TotalMinutes is fractional, rather than solely whole minutes
         if (timeDiffMinutes < 1)
             return;