aboutsummaryrefslogtreecommitdiff
path: root/module/test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'module/test.rb')
-rw-r--r--module/test.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/module/test.rb b/module/test.rb
index cfc929b..69bb888 100644
--- a/module/test.rb
+++ b/module/test.rb
@@ -11,21 +11,21 @@ module Dinobot
end
def echo(m, args)
- m.response << [:say, m.channel, args]
+ m.respond [:say, m.channel, args]
end
def ping(m, args)
- m.response << [:say, m.channel, 'pong']
+ m.respond [:say, m.channel, 'pong']
end
def x3(m, args)
3.times do
- m.response << [:say, m.channel, args]
+ m.respond [:say, m.channel, args]
end
end
def fooify(m, args)
- m.response << [:say, m.channel, "foo#{args}"]
+ m.respond [:say, m.channel, "foo#{args}"]
end
def error(m, args)
@@ -37,7 +37,7 @@ module Dinobot
end
def invalidresponse(m, args)
- m.response << [:say, m.channel]
+ m.respond [:say, m.channel]
end
end
end