summaryrefslogtreecommitdiff
path: root/Hsbot/IRCPlugin.hs
diff options
context:
space:
mode:
authorJulien Dessaux2010-04-21 22:39:03 +0200
committerJulien Dessaux2010-04-21 22:39:03 +0200
commit8551832bd29508f36b6820e19d4af0525b1cba50 (patch)
tree2a99933414aee751f3843be901940ab44dd4189e /Hsbot/IRCPlugin.hs
parentRemoved all the dynamic module loading stuff. (diff)
downloadhsbot-8551832bd29508f36b6820e19d4af0525b1cba50.tar.gz
hsbot-8551832bd29508f36b6820e19d4af0525b1cba50.tar.bz2
hsbot-8551832bd29508f36b6820e19d4af0525b1cba50.zip
Add the IrcMsg as an optional parameter for an internal command.
Diffstat (limited to 'Hsbot/IRCPlugin.hs')
-rw-r--r--Hsbot/IRCPlugin.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Hsbot/IRCPlugin.hs b/Hsbot/IRCPlugin.hs
index d4dcb82..568eb1d 100644
--- a/Hsbot/IRCPlugin.hs
+++ b/Hsbot/IRCPlugin.hs
@@ -28,7 +28,7 @@ sendCommand :: String -> String -> String -> IrcPlugin ()
sendCommand cmd to params = do
serverChan <- gets instanceServerChan
from <- gets instanceName
- liftIO $ writeChan serverChan $ InternalCmd $ IntCmd cmd from to params
+ liftIO $ writeChan serverChan $ InternalCmd $ IntCmd cmd from to params Nothing
sendRegisterCommand :: String -> IrcPlugin ()
sendRegisterCommand cmd = sendCommand "REGISTER" "CORE" cmd