Fixed quote start.
This commit is contained in:
parent
99462bfe9f
commit
74d72248b9
1 changed files with 2 additions and 2 deletions
|
@ -192,8 +192,8 @@ theQuote = do
|
||||||
Nothing -> answerMsg msg $ (getSender msg) ++ ": Invalid quoteID or empty database."
|
Nothing -> answerMsg msg $ (getSender msg) ++ ": Invalid quoteID or empty database."
|
||||||
_ -> answerMsg msg $ getSender msg ++ " : Invalid quoteID."
|
_ -> answerMsg msg $ getSender msg ++ " : Invalid quoteID."
|
||||||
"quote":"show":[] -> showRandomQuote
|
"quote":"show":[] -> showRandomQuote
|
||||||
"quote":"start":quotee:[phrase] -> quoteStart quoteDB msg quotee phrase
|
"quote":"start":quotee:phrase -> quoteStart quoteDB msg quotee $ unwords phrase
|
||||||
"quote":quotee:[phrase] -> quoteStart quoteDB msg quotee phrase
|
"quote":quotee:phrase -> quoteStart quoteDB msg quotee $ unwords phrase
|
||||||
"quote":_ -> answerMsg msg "Invalid quote command."
|
"quote":_ -> answerMsg msg "Invalid quote command."
|
||||||
"vote":"help":"quick":_ -> do
|
"vote":"help":"quick":_ -> do
|
||||||
answerMsg msg "vote [quick] [QUOTEID] { +1 | -1 | ++ | -- }"
|
answerMsg msg "vote [quick] [QUOTEID] { +1 | -1 | ++ | -- }"
|
||||||
|
|
Reference in a new issue