modify phenny.say() to split long messages
parent
2dc0b0bdd6
commit
a981cf3d5b
13
irc.py
13
irc.py
|
@ -182,6 +182,19 @@ class Bot(asynchat.async_chat):
|
||||||
except UnicodeEncodeError as e:
|
except UnicodeEncodeError as e:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
# Split long messages
|
||||||
|
maxlength = 430
|
||||||
|
if len(text) > maxlength:
|
||||||
|
first_message = text[0:maxlength].decode('utf-8','ignore')
|
||||||
|
line_break = len(first_message)
|
||||||
|
for i in range(len(first_message)-1,-1,-1):
|
||||||
|
if first_message[i] == " ":
|
||||||
|
line_break = i
|
||||||
|
break
|
||||||
|
self.msg(recipient, text.decode('utf-8','ignore')[0:line_break])
|
||||||
|
self.msg(recipient, text.decode('utf-8','ignore')[line_break+1:])
|
||||||
|
return
|
||||||
|
|
||||||
# No messages within the last 3 seconds? Go ahead!
|
# No messages within the last 3 seconds? Go ahead!
|
||||||
# Otherwise, wait so it's been at least 0.8 seconds + penalty
|
# Otherwise, wait so it's been at least 0.8 seconds + penalty
|
||||||
if self.stack:
|
if self.stack:
|
||||||
|
|
Loading…
Reference in New Issue