Storycraft: display how over the user went when writing their line, if they went over
This commit is contained in:
parent
2f001e274b
commit
e39d55f03d
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue