diff --git a/core.rb b/core.rb index c1cb0f6..9441cfd 100644 --- a/core.rb +++ b/core.rb @@ -1,12 +1,10 @@ # frozen_string_literal: true -require 'discordrb' - $LOAD_PATH.unshift './src/frost/model' Dir['./src/frost/**/*.rb'].each { |file| require file if !file.include?('commands.rb') } -bot = Discordrb::Bot.new(token: CONFIG['Discord']['TOKEN'], intents: 32_905, log_mode: :normal) +bot = Discordrb::Bot.new(token: CONFIG['Discord']['TOKEN'], intents: 32905, log_mode: :normal) bot.ready { bot.custom_status(ACTIVITY[1], ACTIVITY[2]) }