From a41182b02b0b4f70e0a4e4ffff9c831207a87ba5 Mon Sep 17 00:00:00 2001 From: Yaohan Chen Date: Mon, 26 May 2008 22:29:41 -0400 Subject: add attribute BasicUserMessage#thread this specifies whether the message handler is to be threaded, and overrides the map option if non-nil. --- lib/rbot/messagemapper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rbot/messagemapper.rb') diff --git a/lib/rbot/messagemapper.rb b/lib/rbot/messagemapper.rb index b08a503f..2b9fc5e3 100644 --- a/lib/rbot/messagemapper.rb +++ b/lib/rbot/messagemapper.rb @@ -207,7 +207,7 @@ class Bot debug "checking auth for #{auth}" if m.bot.auth.allow?(auth, m.source, m.replyto) debug "template match found and auth'd: #{action.inspect} #{options.inspect}" - if tmpl.options[:thread] || tmpl.options[:threaded] + if m.thread || (m.thread == nil && tmpl.options[:thread] || tmpl.options[:threaded]) Thread.new do begin @parent.send(action, m, options) -- cgit v1.2.3