This commit is contained in:
raylu 2010-10-16 18:47:04 -04:00
parent f849da89c1
commit 2583f883f9
1 changed files with 7 additions and 0 deletions

View File

@ -20,6 +20,7 @@ var commands = map [string]func(*irc.Conn, string, string, string) {
"remove": remove,
"topic": topic,
"appendtopic": appendtopic,
"say": csay,
}
const googleAPIKey = "ABQIAAAA6-N_jl4ETgtMf2M52JJ_WRQjQjNunkAJHIhTdFoxe8Di7fkkYhRRcys7ZxNbH3MIy_MKKcEO4-9_Ag"
@ -296,3 +297,9 @@ func appendtopic(conn *irc.Conn, nick, args, channel string) {
}
conn.Topic(channel, basetopic + args)
}
func csay(conn *irc.Conn, nick, args, target string) {
if isChannel(target) && hasAccess(conn, target, nick, "t") {
say(conn, target, args)
}
}