Fix issue with font overlap

This commit is contained in:
Sean Corrigan 2020-12-24 16:50:13 -05:00
parent 8c2d66fca1
commit d8a8b281e4

View File

@ -26,7 +26,7 @@ def fixformatting(message):
fixedmessage = [""]
counter = 0
for word in message.split(" "):
if counter + len(word) >= 18:
if counter + len(word) >= 22:
counter = 0
fixedmessage.append("\n")
fixedmessage.append("{} ".format(word))