From 88a86be5004fcbd4076ff7a6fae0992d44b37641 Mon Sep 17 00:00:00 2001 From: Perry Fraser Date: Wed, 6 Aug 2025 19:17:20 -0400 Subject: [PATCH] docs: update comment on config saving in tests (#39438) --- Content.Client/Playtime/ClientsidePlaytimeTrackingManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Playtime/ClientsidePlaytimeTrackingManager.cs b/Content.Client/Playtime/ClientsidePlaytimeTrackingManager.cs index 330ff9122f..9a4f75d596 100644 --- a/Content.Client/Playtime/ClientsidePlaytimeTrackingManager.cs +++ b/Content.Client/Playtime/ClientsidePlaytimeTrackingManager.cs @@ -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;