Showing with 13 additions and 0 deletions.
  1. +13 −0 plugins/fortune.rb
@@ -0,0 +1,13 @@

class Fortune
include Cinch::Plugin
include Authentication

match "fortune"

def execute(m)
not_banned(@bot, m) or return

m.reply `fortune`
end
end