summaryrefslogtreecommitdiff
path: root/HsbotMaster/Hsbot
diff options
context:
space:
mode:
Diffstat (limited to 'HsbotMaster/Hsbot')
-rw-r--r--HsbotMaster/Hsbot/Types.hs3
1 files changed, 0 insertions, 3 deletions
diff --git a/HsbotMaster/Hsbot/Types.hs b/HsbotMaster/Hsbot/Types.hs
index 66b4d6b..ce1432b 100644
--- a/HsbotMaster/Hsbot/Types.hs
+++ b/HsbotMaster/Hsbot/Types.hs
@@ -19,8 +19,6 @@ import qualified Data.Map as M
import Data.Time
import System.IO
-import Hsbot.Config
-
-- | The Bot monad
type Bot = StateT BotState IO
@@ -29,7 +27,6 @@ data BotState = BotState
{ botStartTime :: UTCTime -- the bot's uptime
, botPlugins :: M.Map String (PluginState, MVar (), ThreadId) -- Loaded plugins
, botChan :: Chan BotMsg -- the bot's communication channel
- , botConfig :: [BotConfig] -- the bot's starting config
, botResumeData :: MVar BotResumeData -- the necessary data to resume the bot's operations on reboot
}