diff --git a/src/Custom Assetbundle.0a61c6.ttslua b/src/Custom Assetbundle.0a61c6.ttslua index 5d36a50..465c6af 100644 --- a/src/Custom Assetbundle.0a61c6.ttslua +++ b/src/Custom Assetbundle.0a61c6.ttslua @@ -793,4 +793,4 @@ function findPlayerBySteamID(steam_id) end end return nil -end \ No newline at end of file +end diff --git a/src/Global.-1.ttslua b/src/Global.-1.ttslua index abf0591..da01404 100644 --- a/src/Global.-1.ttslua +++ b/src/Global.-1.ttslua @@ -485,7 +485,7 @@ function clueEntered(player, value) end -- Remove the newline, trim the clue, and convert to lowercase - value = value:gsub("\n", ""):match("%s*(.-)%s*$"):lower() + value = value:gsub("\n", ""):match("%s*(.*)%s*$"):lower() -- Parse the entered clue into its respective parts local clue, number, error = getClueDetails(value) @@ -1604,7 +1604,7 @@ function processChat(message) end end - return command, args:gsub("^%s*(.-)%s*$", "%1") + return command, args:gsub("^%s*(.*)%s*$", "%1") end function toggleTurns()