summaryrefslogtreecommitdiff
path: root/lib/rbot
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-02-05 12:13:09 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-02-05 12:13:09 +0000
commit74650a43a45e67a35deb72375a6c0d2cbb64b79e (patch)
tree845192512d00b9ec5c82cabd9bdd56506eb7fe49 /lib/rbot
parentdcc2a88cb8529d7e393f1b96e84f6c94a864e4f9 (diff)
Fix horrible bug in reworked sendmsg code that prevented it from working correctly with messages with embedded newlines
Diffstat (limited to 'lib/rbot')
-rw-r--r--lib/rbot/ircbot.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbot/ircbot.rb b/lib/rbot/ircbot.rb
index 956415f9..5cd0ac4d 100644
--- a/lib/rbot/ircbot.rb
+++ b/lib/rbot/ircbot.rb
@@ -792,7 +792,7 @@ class IrcBot
if(left >= msg.length)
sendq "#{fixed}#{msg}", chan, ring
log_sent(type, where, msg)
- return
+ break
end
if opts[:max_lines] and cmd_lines == max_lines - 1
debug "Max lines count reached for message #{original_message.inspect} while sending #{msg.inspect}, truncating"
@@ -816,8 +816,8 @@ class IrcBot
end
sendq "#{fixed}#{line}", chan, ring
log_sent(type, where, line)
- cmd_lines += 1
end while(msg.length > 0)
+ cmd_lines += 1
}
end