If points are already claimed, mention the answer is correct.

This commit is contained in:
Neale Pickett 2013-01-31 19:27:29 -07:00
parent 7f69a35a50
commit d6f037f762
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ cgi_fail(int err)
case ERR_NOTEAM:
cgi_result(409, "No such team", "<p>There is no team with that hash.</p>");
case ERR_CLAIMED:
cgi_result(409, "Already claimed", "<p>Your team has already claimed these points.</p>");
cgi_result(409, "Already claimed", "<p>That is the correct answer, but your team has already claimed these points.</p>");
default:
cgi_result(409, "Failure", "<p>Failure code: %d</p>", err);
}