aboutsummaryrefslogtreecommitdiff
path: root/module/module.rb
diff options
context:
space:
mode:
Diffstat (limited to 'module/module.rb')
-rw-r--r--module/module.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/module/module.rb b/module/module.rb
deleted file mode 100644
index 9d72b09..0000000
--- a/module/module.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-module Dinobot
- module Module
- class Module
- attr_accessor :commands
-
- def initialize(bot)
- @bot = bot
-
- @commands = [:commands]
- end
-
- def call(user, channel, message)
- command, argument = message.split(' ', 3)[1..2]
-
- if @commands.map { |x| x.to_s }.include?(command)
- send(command, user, channel, argument)
- end
- end
-
- def commands(user, channel, argument)
- [[:say, channel, "Commands: #{@commands.sort.join(' ')}"]]
- end
- end
- end
-end