From e7003544691b6166f90ba4fe5fa7acf906e48d1c Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Tue, 6 Feb 2007 11:34:17 +0000 Subject: Suppress a couple of warnings --- data/rbot/plugins/quiz.rb | 2 +- data/rbot/plugins/rss.rb | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'data/rbot/plugins') diff --git a/data/rbot/plugins/quiz.rb b/data/rbot/plugins/quiz.rb index 0d1d9ee6..21af8e1c 100644 --- a/data/rbot/plugins/quiz.rb +++ b/data/rbot/plugins/quiz.rb @@ -601,7 +601,7 @@ class QuizPlugin < Plugin def cmd_top_number( m, params ) num = params[:number].to_i - return unless 1..50 === num + return if num < 1 or num > 50 chan = m.channel q = create_quiz( chan ) if q.nil? diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb index 22a6dc18..08b2c775 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -341,7 +341,10 @@ class RSSFeedsPlugin < Plugin def change_rss(m, params) handle = params[:handle].downcase feed = @feeds.fetch(handle, nil) - return m.reply "No such feed with handle #{handle}" unless feed + unless feed + m.reply "No such feed with handle #{handle}" + return + end case params[:what].intern when :handle new = params[:new].downcase -- cgit v1.2.3