aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/irc.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/irc.rb b/core/irc.rb
index 779b37b..0cde75d 100644
--- a/core/irc.rb
+++ b/core/irc.rb
@@ -62,6 +62,10 @@ module Dinobot
def privmsg(channel, message)
puts "PRIVMSG #{channel} :#{message}"
end
+
+ def quit(message)
+ puts "QUIT :#{message}"
+ end
end
end
end