]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - data/rbot/plugins/eightball.rb
plugin(script): remove deprecated $SAFE
[user/henk/code/ruby/rbot.git] / data / rbot / plugins / eightball.rb
index 647484901218ed8f0a96dda2d1548c60dcffbe17..d28c1cc8acb1127798c08f02ddbcd06add3f2409 100644 (file)
@@ -10,7 +10,7 @@ class EightBallPlugin < Plugin
   end
   def eightball(m, params)
     answers = @answers[rand(@answers.length)]
-    action = "shakes the magic 8-ball... #{answers}"
+    action = "shakes the magic 8-ball for #{m.source} ... #{answers}"
     @bot.action m.replyto, action
   end
 end