From 692e423223f25bcb3582eb78fed8883f5cd0e66b Mon Sep 17 00:00:00 2001 From: Terry Hearst Date: Thu, 5 Oct 2023 00:35:42 -0400 Subject: [PATCH] Show thousandths in diamond time --- Patches/MedalsDisplayPatches.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Patches/MedalsDisplayPatches.cs b/Patches/MedalsDisplayPatches.cs index 79dd9b1..75269e7 100644 --- a/Patches/MedalsDisplayPatches.cs +++ b/Patches/MedalsDisplayPatches.cs @@ -39,7 +39,7 @@ namespace DiamondTimeViewer.Patches if (showDiamondTime) { spacingText = " "; - diamondText = spacingText + " " + SegmentedTime.SPTimeText(diamond); + diamondText = spacingText + " " + SegmentedTime.SPTimeText(diamond, true); } bool hasEgg = eggUnlock != null && eggUnlock.Count > 0;