Fix a case issue causing the judging script to fail

This commit is contained in:
pgrimsrud 2015-12-14 23:37:24 -07:00
parent 679191170a
commit a1eda8f3ab
1 changed files with 2 additions and 2 deletions

View File

@ -90,13 +90,13 @@ end
-- Alias for writing results; blanks out times with reason.
function writeFailureToResults(reason)
writeResults(parseHash(), movie.getheader()["author"], reason, reason, reason)
writeResults(parseHash(), movie.getheader()["Author"], reason, reason, reason)
end
-- Alias for writing results; takes in endFrame and in game time --
function writeSuccessToResults(endFrame, inGameTime)
writeResults(parseHash(), movie.getheader()["author"], endFrame, movie.length(), inGameTime)
writeResults(parseHash(), movie.getheader()["Author"], endFrame, movie.length(), inGameTime)
end
function movieHasFinished()