aboutsummaryrefslogtreecommitdiff
path: root/echo.rb
diff options
context:
space:
mode:
Diffstat (limited to 'echo.rb')
-rw-r--r--echo.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/echo.rb b/echo.rb
index 4911ad0..34b9770 100644
--- a/echo.rb
+++ b/echo.rb
@@ -8,8 +8,8 @@ module Dinobot
@commands << :echo
end
- def echo(user, channel, message)
- [[:say, channel, message]]
+ def echo(user, channel, argument)
+ [[:say, channel, argument]]
end
end
end