diff options
Diffstat (limited to 'echo.rb')
-rw-r--r-- | echo.rb | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |