# HG changeset patch # User KarstenBock@gmx.net # Date 1315500970 -7200 # Node ID 5508000aceafb5d162e5746507a0530d4a4ca541 # Parent 84d03dc709049ec4c02b3e808e8b234ab1ae4fe6 Fixed bug in the text splitting code of ExamineAction. diff -r 84d03dc70904 -r 5508000aceaf src/parpg/objects/action.py --- a/src/parpg/objects/action.py Thu Sep 08 18:36:40 2011 +0200 +++ b/src/parpg/objects/action.py Thu Sep 08 18:56:10 2011 +0200 @@ -208,7 +208,7 @@ logger.debug(action_text) #this code will cut the line up into smaller lines that will be displayed place = 25 - while place <= len(action_text): + while place < len(action_text): if action_text[place] == ' ': action_text = action_text[:place] +'\n'+action_text[place:] place += 26 #plus 1 character to offset the new line