# File contrib/plugins/ri.rb, line 20
 def privmsg(m)
		if not m.params
			m.reply "uhmm... whatever"
			return
		end

		meth = self.method(@@handlers[m.plugin])
		meth.call(m)
	end