Added module configuration params: -params=<key>:<val>(!<key>:<val>])*

This commit is contained in:
Andreas Neue
2016-02-16 07:57:14 +01:00
parent 5f2dd41d55
commit 44ee1cf628
10 changed files with 67 additions and 55 deletions
+2 -2
View File
@@ -520,7 +520,7 @@ var quotes = [][]string{
}
func init() {
msgHandlers["stoll"] = stollHandleMessage
MsgHandlers["stoll"] = stollHandleMessage
}
func stollHandleMessage(m *irc.Message) {
@@ -535,6 +535,6 @@ func stollHandleMessage(m *irc.Message) {
line += " "
}
line += "[Dr. Axel Stoll, promovierter Naturwissenschaftler]"
sayCh <- fmt.Sprintf("%s\n%s", "*", line)
SayCh <- fmt.Sprintf("%s\n%s", "*", line)
}
}