diff options
Diffstat (limited to 'module.rb')
-rw-r--r-- | module.rb | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,7 +2,9 @@ module Dinobot class Module attr_accessor :commands - def initialize + def initialize(bot) + @bot = bot + @commands = [:commands] end |