Fixed mistake that prevented death message to be parsed upon restarting
This commit is contained in:
parent
98a1debf03
commit
f698fd2183
1 changed files with 2 additions and 2 deletions
4
Hsbot.hs
4
Hsbot.hs
|
@ -43,10 +43,10 @@ startHsbot config = do
|
||||||
BotExit -> runReaderT terminateHsbot hsbotEnv
|
BotExit -> runReaderT terminateHsbot hsbotEnv
|
||||||
BotReload reason -> do
|
BotReload reason -> do
|
||||||
runReaderT terminateHsbot hsbotEnv
|
runReaderT terminateHsbot hsbotEnv
|
||||||
relaunchWithTextState (M.singleton "die_msg" . show $ BotReload reason) Nothing -- TODO find a way to properly implement that, then insert necessary information in this MVar
|
relaunchWithTextState (State $ M.singleton "die_msg" . show $ BotReload reason) Nothing -- TODO find a way to properly implement that, then insert necessary information in this MVar
|
||||||
BotRestart reason -> do
|
BotRestart reason -> do
|
||||||
runReaderT terminateHsbot hsbotEnv
|
runReaderT terminateHsbot hsbotEnv
|
||||||
relaunchWithTextState (M.singleton "die_msg" . show $ BotRestart reason) Nothing
|
relaunchWithTextState (State $ M.singleton "die_msg" . show $ BotRestart reason) Nothing
|
||||||
|
|
||||||
hsbot :: Config -> IO ()
|
hsbot :: Config -> IO ()
|
||||||
hsbot = Dyre.wrapMain $ Dyre.defaultParams
|
hsbot = Dyre.wrapMain $ Dyre.defaultParams
|
||||||
|
|
Reference in a new issue