From e1806dd4f43f7ca4223724d6439d0b5dfa18e5cc Mon Sep 17 00:00:00 2001 From: AardCrowley Date: Wed, 22 Feb 2023 22:52:32 -0500 Subject: [PATCH] Update FriendAgoSorted.xml --- FriendAgoSorted/FriendAgoSorted.xml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/FriendAgoSorted/FriendAgoSorted.xml b/FriendAgoSorted/FriendAgoSorted.xml index 3a9152e..c6aab57 100644 --- a/FriendAgoSorted/FriendAgoSorted.xml +++ b/FriendAgoSorted/FriendAgoSorted.xml @@ -55,8 +55,7 @@ friendsAlpha = {} count = 0 reverse = false ---strForm = "@w%3d) - %-12s@R(Offline - %d day%s and %02d:%02d:%02d)\n" -strForm = "@w%3d) - %-12s@R(Offline -%s%02d:%02d:%02d)\n" +strForm = "@w%3d) - %-12s@R(Offline - %s%02d:%02d:%02d)\n" statForm = "@w%3d) - %-12s%s(%s)\n" function resetValues() @@ -110,7 +109,7 @@ function returnOutput() friendSeconds = sortTableByValue(friendSeconds) for i,v in pairs(friendSeconds) do - local dayStr = " " + local dayStr = "" local kname = v.key local fTable = friendAgo[kname] local days = tonumber(fTable.days) @@ -119,7 +118,7 @@ function returnOutput() local seconds = fTable.seconds local plural = (days == 1 and "day" or "days") if days > 0 then - dayStr = " " .. days .. " " .. plural .. " and " + dayStr = days .. " " .. plural .. " and " end Simulate(ColoursToANSI(string.format(strForm, i, kname, dayStr, hours, minutes, seconds))) count = i