diff options
author | Julien Dessaux | 2010-07-04 01:35:47 +0200 |
---|---|---|
committer | Julien Dessaux | 2010-07-04 01:35:47 +0200 |
commit | 116c655fdc9ad68124cffd4d4d99585597f1f8a4 (patch) | |
tree | cff25e9f1ce8fd2e6abdca5c3324afc27d1d76ac /HsbotMaster/Hsbot | |
parent | Moved files around as a preliminary for architectural changes. (diff) | |
download | hsbot-116c655fdc9ad68124cffd4d4d99585597f1f8a4.tar.gz hsbot-116c655fdc9ad68124cffd4d4d99585597f1f8a4.tar.bz2 hsbot-116c655fdc9ad68124cffd4d4d99585597f1f8a4.zip |
Made some slight changes in order to make the bot's core "compile".
Diffstat (limited to 'HsbotMaster/Hsbot')
-rw-r--r-- | HsbotMaster/Hsbot/Types.hs | 3 |
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 } |