Fix issue with font overlap
This commit is contained in:
parent
8c2d66fca1
commit
d8a8b281e4
@ -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))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user