Storycraft: display how over the user went when writing their line, if they went over

This commit is contained in:
Brian S. Stephan 2011-01-09 21:40:03 -06:00
parent 2f001e274b
commit e39d55f03d
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ class Storycraft(Module):
else:
return 'Failed to save your line.'
else:
return 'The maximum line length for this game is {0:d} characters.'.format(game.line_length)
return 'The maximum line length for this game is {0:d} characters. (You were over by {1:d}.)'.format(game.line_length, len(input_line)-game.line_length)
else:
return 'You are not the assignee of the current game.'
else: