aboutsummaryrefslogtreecommitdiff
path: root/dinobot.rb
diff options
context:
space:
mode:
Diffstat (limited to 'dinobot.rb')
-rw-r--r--dinobot.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/dinobot.rb b/dinobot.rb
index 690a384..57f980c 100644
--- a/dinobot.rb
+++ b/dinobot.rb
@@ -78,7 +78,11 @@ module Dinobot
def parse_command(user, channel, command, prev=nil)
command, remainder = command.split(' | ', 2)
- mod = command.scan(/\A\S+/).first.downcase.intern
+ mod = command.scan(/\A\S+/).first.downcase
+
+ return unless @modules.keys.map { |x| x.to_s }.include?(mod)
+
+ mod = mod.intern
if prev.nil?
methods = @modules[mod].call(user, channel, command)