removed 'ok' printout prompt

This commit is contained in:
Starfflame 2021-07-12 16:05:38 -05:00
parent 4812f51700
commit ac10418230
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ function CoreHelpers.defineWord(dict: Dictionary, str: string, func: function(En
end
function CoreHelpers.standardInputRefill(): string
io.write("ok\n")
io.write("\n")
local input = io.read().."\n"
return input
end