Fixed day suffix - there's no 33rd, but there is a 23rd

This commit is contained in:
Jon Glueckstein
2021-12-30 09:40:15 -06:00
parent 83cb9b7785
commit 2a72db611d

View File

@@ -218,7 +218,7 @@ local function daysuffix(day)
if (day == "2") or (day == "22") then if (day == "2") or (day == "22") then
return "nd" return "nd"
end end
if (day == "3") or (day == "33") then if (day == "3") or (day == "23") then
return "rd" return "rd"
end end
return "th" return "th"