X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Furban.rb;h=24c11dd7f3167272225e417ad3abcf88e4247bc6;hb=297c80c7632e76e5c5a55cabad57154706911b57;hp=9c55a06ededf18d110a8371029648cea0e423930;hpb=baee671df9879de90925425f7998904ce3b049fa;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/urban.rb b/data/rbot/plugins/urban.rb index 9c55a06e..24c11dd7 100644 --- a/data/rbot/plugins/urban.rb +++ b/data/rbot/plugins/urban.rb @@ -48,7 +48,7 @@ class UrbanPlugin < Plugin resp = @bot.httputil.head('http://www.urbandictionary.com/random.php', :max_redir => -1, :cache => false) - return m.reply "Couldn't get the urban dictionary word of the day" if resp.nil? + return m.reply "Couldn't get a random urban dictionary word" if resp.nil? if resp.code == "302" && (loc = resp['location']) words = URI.unescape(loc.match(/define.php\?term=(.*)$/)[1]) rescue nil end