We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a8b54d commit a455e14Copy full SHA for a455e14
src/Global.-1.ttslua
@@ -632,7 +632,6 @@ function clueEntered(player, value)
632
633
-- Parse the entered clue into its respective parts
634
local clue, number, error = getClueDetails(value)
635
- clue = clue:lower()
636
637
-- Handle clue parsing errors
638
if error then
@@ -649,6 +648,9 @@ function clueEntered(player, value)
649
648
return
650
end
651
+ -- Standardize clue to lowercase
652
+ clue = clue:lower()
653
+
654
-- Don't allow a clue that isn't covered
655
for cardIndex, cardData in ipairs(cards) do
656
if not cardData.covered and cardData.value:lower() == clue:lower() then
0 commit comments